mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-15 17:00:05 +00:00
14 lines
253 B
Rust
14 lines
253 B
Rust
// run-pass
|
|
|
|
|
|
pub fn main() {
|
|
let mut x: isize = 10;
|
|
let mut y: isize = 0;
|
|
while y < x { println!("{}", y); println!("hello"); y = y + 1; }
|
|
while x > 0 {
|
|
println!("goodbye");
|
|
x = x - 1;
|
|
println!("{}", x);
|
|
}
|
|
}
|