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