RosettaCodeData/Task/Integer-sequence/Phix/integer-sequence-3.phix
2016-12-05 23:44:36 +01:00

6 lines
107 B
Text

include bigatom.e
bigatom b = ba_new(0)
while 1 do
ba_printf(1,"%B\n",b)
b = ba_add(b,1)
end while