rhai/scripts/if1.rhai

6 lines
55 B
Plaintext

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