rust/src/test/run-pass/crust-call.rs

23 lines
454 B
Rust
Raw Normal View History

2012-02-13 18:06:56 -06:00
native mod rustrt {
fn rust_dbg_call(cb: *u8,
data: libc::uintptr_t) -> libc::uintptr_t;
2012-02-13 18:06:56 -06:00
}
crust fn cb(data: libc::uintptr_t) -> libc::uintptr_t {
2012-02-13 18:06:56 -06:00
if data == 1u {
data
} else {
fact(data - 1u) * data
}
}
fn fact(n: uint) -> uint {
#debug("n = %?", n);
rustrt::rust_dbg_call(cb, n)
}
fn main() {
let result = fact(10u);
#debug("result = %?", result);
assert result == 3628800u;
}