12 lines
189 B
Go
12 lines
189 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println(true && true)
|
|
fmt.Println(true && false)
|
|
fmt.Println(true || true)
|
|
fmt.Println(true || false)
|
|
fmt.Println(!true)
|
|
}
|