mirror of
https://github.com/rust-lang/cargo.git
synced 2025-10-01 11:30:39 +00:00
8 lines
88 B
Rust
8 lines
88 B
Rust
fn main() {
|
|
let x = 5i64;
|
|
|
|
if (x as u32) < 4 {
|
|
println!("yay");
|
|
}
|
|
}
|