10 lines
170 B
Text
10 lines
170 B
Text
|
|
/* NetRexx */
|
||
|
|
options replace format comments java crossref savelog symbols nobinary
|
||
|
|
|
||
|
|
say
|
||
|
|
say 'Loops/Infinite'
|
||
|
|
|
||
|
|
loop label spam forever
|
||
|
|
say 'SPAM'
|
||
|
|
end spam
|