No problem for me: http://stackoverflow.com/questions/23950796/how-to-repeat-a-statement-n-times-simple-loop/23952012#23952012
Would be nice if we could elide the parentheses and semicolons:
10.times! {
writeln("Do It!");
}
10.times! (uint n) {
writeln(n + 1, " Round");
}
