able-script/able-script-test/function.able

10 lines
135 B
Plaintext
Raw Normal View History

2021-04-11 19:11:39 +00:00
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);