rust/src/test/run-pass/yield.rs

21 lines
194 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
fn main() {
auto other = spawn child();
log "1";
yield;
log "2";
yield;
log "3";
join other;
}
fn child() {
log "4";
yield;
log "5";
yield;
log "6";
}