main
//Bits aka Booleans.
b $= bit()
b $= true
print(b)
b $= false
//Non-zero values are true.
b $= bit(1)
b $= -1
//Zero values are false
b $= 0
}