10 lines
213 B
Text
10 lines
213 B
Text
/* NetRexx */
|
|
options replace format comments java crossref symbols binary
|
|
|
|
k_ = Rexx
|
|
bigDigits = 999999999 -- Maximum setting for digits allowed by NetRexx
|
|
numeric digits bigDigits
|
|
|
|
loop k_ = 1
|
|
say k_
|
|
end k_
|