RosettaCodeData/Task/Loops-Infinite/AWK/loops-infinite.awk
2023-07-01 13:44:08 -04:00

5 lines
44 B
Awk

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