rhai/scripts/loop.rhai

15 lines
200 B
JavaScript
Raw Normal View History

2022-07-24 17:03:35 +02:00
//! This script runs an infinite loop, ending it with a break statement.
2020-03-16 07:50:12 +01:00
let x = 10;
// simulate do..while using loop
loop {
print(x);
2020-03-16 07:50:12 +01:00
2020-05-25 14:14:31 +02:00
x -= 1;
2020-03-16 07:50:12 +01:00
2021-05-24 06:12:16 +02:00
if x <= 0 { break; }
}
2021-04-09 16:48:47 +02:00
export x as foo;