13. Boolean
Boolean(bool) Type
package main
import "fmt"
func main() {
var shouldGo bool = true
if shouldGo {
fmt.Println("I should Go!")
}
}Declaring Boolean
var shouldBe bool = true
var shouldBe = true
shouldBe :=trueLast updated