RosettaCodeData/Task/Integer-sequence/Seed7/integer-sequence-2.seed7

13 lines
227 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
$ include "seed7_05.s7i";
include "bigint.s7i";
const proc: main is func
local
var bigInteger: number is 1_;
begin
repeat
writeln(number);
incr(number);
until FALSE;
end func;