11 lines
116 B
ChaiScript

var i = 0
if (i == 0) {
print("i is 0")
}
else if (i == 1) {
print("i is 1")
}
else {
print("i is not 0 or 1")
}