rhai/examples/function_decl2.rhai
2016-03-01 21:36:46 -05:00

6 lines
47 B
Plaintext

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