rhai/scripts/function_decl1.rhai

10 lines
120 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
}
2020-05-02 16:23:36 +08:00
print("bob() should be 3:");
print(bob());