rhai/scripts/if1.rhai

6 lines
55 B
Plaintext
Raw Normal View History

2016-03-02 03:36:46 +01:00
var a = true;
if (a) {
var x = 56;
print(x);
}