6 lines
120 B
Rust
6 lines
120 B
Rust
|
|
|
|
fn foo(x: int) { log_full(core::debug, x); }
|
|
|
|
fn main() { let x: int; if 1 > 2 { x = 12; } else { x = 10; } foo(x); }
|