11 lines
150 B
Text
11 lines
150 B
Text
#
|
|
# 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
|