6 lines
101 B
D
6 lines
101 B
D
void main() {
|
|
import std.stdio;
|
|
|
|
foreach (immutable i; 0 .. 16)
|
|
writefln("%b", i);
|
|
}
|