rhai/examples/if1.rhai
2016-03-01 21:36:46 -05:00

6 lines
55 B
Plaintext

var a = true;
if (a) {
var x = 56;
print(x);
}