This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
4 lines
81 B
Rust
4 lines
81 B
Rust
fn int_id(x: int) -> int { ret x; }
|
|
|
|
fn main() { while true { int_id(break); } }
|