e0/examples/variables.e0

5 lines
52 B
Plaintext
Raw Normal View History

2022-04-06 04:32:37 +00:00
fn main() -> int {
let x: int = 42;
return x;
}