RosettaCodeData/Task/Loops-Infinite/Wee-Basic/loops-infinite.basic

6 lines
48 B
Plaintext

let loop=1
while loop=1
print 1 "SPAM"
wend
end