rhai/scripts/function_decl2.rhai

6 lines
47 B
Plaintext
Raw Normal View History

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