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

10 lines
170 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
/* NetRexx */
options replace format comments java crossref savelog symbols nobinary
say
say 'Loops/Infinite'
loop label spam forever
say 'SPAM'
end spam