boolean in Go

Keyword bool defines boolean in Go.
```
    var bVal bool   // default is false
    fmt.Printf("bVal: %v\n", bVal)
```