Skip to content

Instantly share code, notes, and snippets.

@bam6o0
Last active July 29, 2017 07:19
Show Gist options
  • Save bam6o0/2c5f67690c12be17001add7aaf3a4ca8 to your computer and use it in GitHub Desktop.
Save bam6o0/2c5f67690c12be17001add7aaf3a4ca8 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
var b bool
b = true
b = false
b = true || false
fmt.Println(b)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment