rhai/examples/function_decl3.rhai
2016-03-02 10:49:24 -05:00

6 lines
84 B
Plaintext

fn f(a, b, c, d, e, f) {
a - b * c - d * e - f
}
print(f(100, 5, 2, 9, 6, 32))