RosettaCodeData/Task/Integer-sequence/GAP/integer-sequence.gap
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

11 lines
138 B
Text

InfiniteLoop := function()
local n;
n := 1;
while true do
Display(n);
n := n + 1;
od;
end;
# Prepare some coffee
InfiniteLoop();