rust/src/test/run-pass/spawn-fn.rs

19 lines
305 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
fn x(str s, int n) {
log s;
log n;
}
fn main() {
spawn x("hello from first spawned fn", 65);
spawn x("hello from second spawned fn", 66);
spawn x("hello from third spawned fn", 67);
let int i = 30;
while (i > 0) {
i = i - 1;
log "parent sleeping";
yield;
}
}