518dc52f85
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
10 lines
225 B
Rust
10 lines
225 B
Rust
|
|
|
|
|
|
// -*- rust -*-
|
|
fn main() { assert (even(42)); assert (odd(45)); }
|
|
|
|
fn even(n: int) -> bool { if n == 0 { ret true; } else { be odd(n - 1); } }
|
|
|
|
fn odd(n: int) -> bool { if n == 0 { ret false; } else { be even(n - 1); } }
|