Files
the-way-to-go_ZH_CN/eBook/examples/chapter_5/booleans.go
2013-06-22 21:29:42 +08:00

13 lines
157 B
Go

package main
import "fmt"
func main() {
bool1 := true
if bool1 {
fmt.Printf("The value is true\n")
} else {
fmt.Printf("The value is false\n")
}
}