Files
the-way-to-go_ZH_CN/eBook/examples/chapter_5/booleans.go
2015-03-03 12:25:25 -05:00

13 lines
169 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")
}
}