8 lines
77 B
Text
8 lines
77 B
Text
while true
|
|
print "SPAM"
|
|
end while
|
|
|
|
//Also
|
|
for(;;) {
|
|
write("SPAM");
|
|
}
|