rust/src/test/run-pass/while-and-do-while.rs
Brian Anderson 518dc52f85 Reformat
This changes the indexing syntax from .() to [], the vector syntax from ~[] to
[] and the extension syntax from #fmt() to #fmt[]
2011-08-20 11:04:00 -07:00

9 lines
165 B
Rust

fn main() {
let x: int = 10;
let y: int = 0;
while y < x { log y; log "hello"; y = y + 1; }
do { log "goodbye"; x = x - 1; log x; } while x > 0
}