rhai/scripts/function_decl1.rhai

10 lines
136 B
Plaintext
Raw Normal View History

2020-03-16 14:50:12 +08:00
// This script defines a function and calls it
2016-03-01 21:36:46 -05:00
fn bob() {
2020-03-16 14:50:12 +08:00
return 3;
2016-03-01 21:36:46 -05:00
}
2021-04-09 22:48:47 +08:00
let result = bob();
2020-05-02 16:23:36 +08:00
2021-04-09 22:48:47 +08:00
print(`bob() should be 3: ${result}`);