Files
ChaiScript/samples/oper.wes
2009-06-06 16:35:37 +00:00

9 lines
119 B
Plaintext

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