edlang/programs/simple.ed
2024-01-30 14:05:14 -03:00

8 lines
85 B
Plaintext

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