edlang/programs/simple.ed
2024-02-03 20:14:29 +01:00

9 lines
117 B
Plaintext

mod Main {
pub fn main(argc: i32) -> i32 {
let mut x: i32 = 2;
x = 4;
return x;
}
}