10 lines
172 B
Text
10 lines
172 B
Text
|
|
/* NetRexx */
|
||
|
|
options replace format comments java crossref symbols nobinary
|
||
|
|
|
||
|
|
extremePrejudice = (1 == 1)
|
||
|
|
if extremePrejudice then do
|
||
|
|
exit extremePrejudice
|
||
|
|
end
|
||
|
|
|
||
|
|
return
|