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