iterate (x; [1...10]) { print(x); if (x % 5 == 0) { print("\n"); continue; }; print(", "); };