mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
13 lines
118 B
Rust
13 lines
118 B
Rust
|
fn foo(int x) {
|
||
|
log x;
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let int x;
|
||
|
if (1 > 2) {
|
||
|
x = 12;
|
||
|
} else {
|
||
|
x = 10;
|
||
|
}
|
||
|
foo(x);
|
||
|
}
|