rhai/scripts/if2.rhai

13 lines
184 B
JavaScript
Raw Normal View History

2022-07-24 23:03:35 +08:00
//! This script runs an if expression.
2022-01-20 12:06:36 +08:00
2021-06-07 20:15:06 +08:00
let a = 42;
let b = 123;
2022-01-20 12:06:36 +08:00
let x = if a <= b { // <- if-expression
2021-06-07 20:15:06 +08:00
b - a
} else {
a - b
} * 10;
print(`x should be 810: ${x}`);