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

15 lines
361 B
Rust
Raw Normal View History

// xfail-stage0
// xfail-stage1
// xfail-stage2
// xfail-stage3
2010-06-23 21:03:09 -07:00
// -*- rust -*-
2011-07-27 14:19:39 +02:00
fn x(s: str, n: int) { log s; log n; }
2010-06-23 21:03:09 -07:00
fn main() {
2011-07-27 14:19:39 +02:00
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 i: int = 30;
while i > 0 { i = i - 1; log "parent sleeping"; yield; }
}