edlang/programs/refs.ed

14 lines
172 B
Plaintext
Raw Normal View History

2024-02-17 16:29:18 +00:00
mod Main {
pub fn main() -> i64 {
let mut a: i64 = 0;
hello(&mut a);
return a;
}
pub fn hello(a: &mut i32) {
*a = 2;
}
}