mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-09 17:48:24 +00:00
13 lines
168 B
Rust
13 lines
168 B
Rust
|
fn main() -> i32 {
|
||
|
let mut result: i32 = 7;
|
||
|
|
||
|
while false {
|
||
|
if false {
|
||
|
return 0;
|
||
|
}
|
||
|
result = 14;
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
}
|