RosettaCodeData/Task/Loops-Infinite/AWK/loops-infinite.awk

6 lines
44 B
Awk

BEGIN {
while(1) {
print "SPAM"
}
}