Allez comprendre le type bool

# Program to create boolean variables

import ("fmt")

func main() {
  var boolValue bool
  boolValue = false

  fmt.Println(boolValue)
}
SAMER SAEID