mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-08 09:08:26 +00:00
14 lines
172 B
Rust
14 lines
172 B
Rust
mod Main {
|
|
pub fn main() -> i64 {
|
|
let mut a: i64 = 0;
|
|
|
|
hello(&mut a);
|
|
|
|
return a;
|
|
}
|
|
|
|
pub fn hello(a: &mut i64) {
|
|
*a = 2;
|
|
}
|
|
}
|