Files
go-koans/basics.go
Steven Degutis d8bdbef975 number stuff
2012-03-11 19:04:41 -05:00

11 lines
280 B
Go

package go_koans
func testNumbers() {
//assert(__bool__ == true) // what is truth?
//assert(__bool__ != false) // in it there is nothing false
//assert(__int__ == 1.0000000000000000000000000000000000000) // precision is in the eye of the beholder
//assert(true == 1)
}