RosettaCodeData/Task/Integer-sequence/NetRexx/integer-sequence-1.netrexx
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

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_