Files
go-koans/basics.go
2012-03-10 23:43:11 -06:00

9 lines
150 B
Go

package go_koans
var __ bool
func testBasics() {
//assert(__ == true) // what is truth?
//assert(!__ != true) // in it there is nothing false
}