518dc52f85
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
16 lines
255 B
Rust
16 lines
255 B
Rust
|
|
|
|
|
|
// -*- rust -*-
|
|
fn main() {
|
|
let v: [int] = [10, 20];
|
|
assert (v[0] == 10);
|
|
assert (v[1] == 20);
|
|
let x: int = 0;
|
|
assert (v[x] == 10);
|
|
assert (v[x + 1] == 20);
|
|
x = x + 1;
|
|
assert (v[x] == 20);
|
|
assert (v[x - 1] == 10);
|
|
}
|