RosettaCodeData/Task/Loops-Infinite/ALGOL-W/loops-infinite.alg

4 lines
60 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
begin
for i := 1 step 0 until 2 do write( "SPAM" )
end.