1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
#testmode:repl # Tests for bool, including bool constructor b = bool(1) b == true b == 1 b + b b += b b b = bool(0) b == false b == 0 b + b b += b b #--- #true #false #2 #2 #true #false #0 #0