rhai/scripts/op2.rhai

8 lines
112 B
Plaintext
Raw Normal View History

2022-01-20 05:06:36 +01:00
// This script runs a complex expression.
2020-05-02 10:23:36 +02:00
print("The result should be 182:");
2020-03-16 07:50:12 +01:00
let x = 12 + 34 * 5;
2021-04-09 16:48:47 +02:00
2020-05-02 10:23:36 +02:00
print(x);