#
# integer sequence
# declare an int and loop until it overflows
decl int i
set i 1
while true
out i endl console
inc i
end while