mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-09 09:38:24 +00:00
8 lines
85 B
Plaintext
8 lines
85 B
Plaintext
|
mod Main {
|
||
|
|
||
|
fn main() -> i32 {
|
||
|
let x: i32 = 2;
|
||
|
return x;
|
||
|
}
|
||
|
}
|