11 lines
280 B
Go
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)
|
|
}
|