mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-08 17:18:25 +00:00
12 lines
159 B
Rust
12 lines
159 B
Rust
|
mod Main {
|
||
|
pub fn main(argc: i64) -> i64 {
|
||
|
let mut a: i64 = 0;
|
||
|
|
||
|
while a < 10 {
|
||
|
a = a + 1;
|
||
|
}
|
||
|
|
||
|
return a;
|
||
|
}
|
||
|
}
|