518dc52f85
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
11 lines
192 B
Rust
11 lines
192 B
Rust
|
|
|
|
fn main() {
|
|
obj buf(data: [u8]) {
|
|
fn get(i: int) -> u8 { ret data[i]; }
|
|
}
|
|
let b = buf([1 as u8, 2 as u8, 3 as u8]);
|
|
log b.get(1);
|
|
assert (b.get(1) == 2 as u8);
|
|
}
|