518dc52f85
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
13 lines
261 B
Rust
13 lines
261 B
Rust
|
|
|
|
fn incr(x: &mutable int) -> bool { x += 1; assert (false); ret false; }
|
|
|
|
fn main() {
|
|
let x = 1 == 2 || 3 == 3;
|
|
assert (x);
|
|
let y: int = 10;
|
|
log x || incr(y);
|
|
assert (y == 10);
|
|
if true && x { assert (true); } else { assert (false); }
|
|
}
|