9 lines
150 B
Go
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
|
|
}
|