518dc52f85
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
9 lines
165 B
Rust
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
|
|
}
|