RosettaCodeData/Task/Integer-sequence/GAP/integer-sequence.gap

12 lines
138 B
Plaintext

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