able-script/able-script-test/function.able
2021-04-11 14:18:41 -05:00

10 lines
135 B
Plaintext

functio something(a: isize, c: isize, r: &mut isize) {
*r = a + c;
}
let a = 3;
let b = 4;
let mut r = 0;
something(a, b, &mut r);