rust/src/test/run-pass/tail-direct.rs
Brian Anderson 518dc52f85 Reformat
This changes the indexing syntax from .() to [], the vector syntax from ~[] to
[] and the extension syntax from #fmt() to #fmt[]
2011-08-20 11:04:00 -07:00

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); } }