Files
ChaiScript/samples/oper.wes
2009-06-07 01:34:29 +00:00

9 lines
123 B
Plaintext

var x = -(1 + 2 - 3 * 4 / 2)
print("Answer: " + x.to_string())
if (x >= 2 && x <= 4) {
print("x is between 2 and 4")
}