8 lines
142 B
Go
8 lines
142 B
Go
package go_koans
|
|
|
|
func testBasics() {
|
|
assert(__bool__ == true) // what is truth?
|
|
|
|
//assert(!__ != true) // in it there is nothing false
|
|
}
|