This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
15 lines
209 B
Rust
15 lines
209 B
Rust
|
|
|
|
fn main() {
|
|
let v = [1];
|
|
v += [2];
|
|
v += [3];
|
|
v += [4];
|
|
v += [5];
|
|
assert (v[0] == 1);
|
|
assert (v[1] == 2);
|
|
assert (v[2] == 3);
|
|
assert (v[3] == 4);
|
|
assert (v[4] == 5);
|
|
}
|