Files
go-koans/about_numbers.go
2012-03-16 10:43:33 -05:00

10 lines
269 B
Go

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