1 2 3 4 5 6 7 8 9 10
// -*- rust -*- fn main() { let int i = 0; while (i < 100) { i = i + 1; log i; yield; } }