rhai/scripts/function_decl2.rhai

6 lines
47 B
Plaintext

fn addme(a, b) {
a+b
}
print(addme(3, 4))