André (a random guy on the Internet) • Software developer not an A+, a proud solid C- • Anime junkie
package main
import (
"fmt"
)
func main() {
// I love Go and the small nuts operator
is_true := false
is_false := true
if is_true != is_false {
fmt.Println("is_true is truly true")
}
}