mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 16:00:07 +00:00
7 lines
80 B
Rust
7 lines
80 B
Rust
fn main() {
|
|
let num = 9;
|
|
while num >= 10 {
|
|
// loop body
|
|
}
|
|
}
|