Files
moxa/_test/and3.go

11 lines
84 B
Go

package main
var a = true && true
func main() {
println(a)
}
// Output:
// true