ChaiScript/unittests/if_else.chai
2009-07-08 18:59:10 +00:00

9 lines
77 B
ChaiScript

var i = 3
if (i == 2) {
print("2")
}
else {
print("other")
}
print("done")