rhai/scripts/function_decl2.rhai

15 lines
413 B
JavaScript
Raw Normal View History

2022-07-24 17:03:35 +02:00
//! This script defines a function with two parameters and local variables.
2020-03-16 07:50:12 +01:00
let a = 3;
2022-01-20 05:06:36 +01:00
fn add(a, b) {
2020-03-16 07:50:12 +01:00
a = 42; // notice that 'a' is passed by value
a + b; // notice that the last value is returned even if terminated by a semicolon
2016-03-02 03:36:46 +01:00
}
2022-01-20 05:06:36 +01:00
let result = add(a, 4);
2020-05-02 10:23:36 +02:00
2022-01-20 05:06:36 +01:00
print(`add(a, 4) should be 46: ${result}`);
2020-05-02 10:23:36 +02:00
2022-01-20 05:06:36 +01:00
print(`a should still be 3: ${a}`); // prints 3: 'a' is never changed