RosettaCodeData/Task/Loops-Infinite/NetRexx/loops-infinite.netrexx

10 lines
170 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
/* NetRexx */
options replace format comments java crossref savelog symbols nobinary
say
say 'Loops/Infinite'
loop label spam forever
say 'SPAM'
end spam