rhai/scripts/function_decl2.rhai

6 lines
47 B
Plaintext
Raw Normal View History

2016-03-02 03:36:46 +01:00
fn addme(a, b) {
a+b
}
print(addme(3, 4))