edlang/simple.ed
2023-05-14 18:11:38 +02:00

6 lines
61 B
Plaintext

fn main(x: i64) -> i64 {
let x = 2 + 3;
return x;
}