rhai/scripts/op3.rhai

6 lines
71 B
Plaintext
Raw Normal View History

2020-05-02 16:23:36 +08:00
print("The result should be 230:");
2020-03-16 14:50:12 +08:00
let x = (12 + 34) * 5;
2021-04-09 22:48:47 +08:00
2020-05-02 16:23:36 +08:00
print(x);