rhai/scripts/if1.rhai

6 lines
55 B
Plaintext
Raw Normal View History

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