6 lines
95 B
D
6 lines
95 B
D
import std.stdio;
|
|
|
|
void main()
|
|
{
|
|
foreach(i; 1..11) i % 5 ? writef("%s, ", i) : writeln(i);
|
|
}
|