2009-06-12 01:29:11 +00:00

11 lines
115 B
ChaiScript

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