edlang/programs/simple.ed
2024-02-03 10:24:44 +01:00

9 lines
113 B
Plaintext

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