edlang/lib/edlang_driver/tests/programs/while.ed

10 lines
118 B
Rust
Raw Normal View History

2024-03-13 11:24:40 +00:00
pub fn main(argc: i64) -> i64 {
let mut a: i64 = 0;
2024-02-14 09:23:39 +00:00
2024-03-13 11:24:40 +00:00
while a < 10 {
a = a + 1;
2024-02-14 09:23:39 +00:00
}
2024-03-13 11:24:40 +00:00
return a;
2024-02-14 09:23:39 +00:00
}