Integer sequence

From Rosetta Code
Revision as of 12:49, 19 February 2021 by Drkameleon (talk | contribs) (Replaced content with "=={{header|Arturo}}== <lang rebol>i:0 while ø [ print i inc 'i ]</lang>")

Arturo

<lang rebol>i:0 while ø [

   print i
   inc 'i

]</lang>