gobyexample/04-booleans.go
Mark McGranaghan 02a0b20746 init
2012-09-16 10:57:18 -07:00

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)
}