7 lines
81 B
D
7 lines
81 B
D
import std.stdio;
|
|
|
|
void main() {
|
|
LOOP:
|
|
writeln("SPAM");
|
|
goto LOOP;
|
|
}
|