RosettaCodeData/Task/Integer-sequence/Yabasic/integer-sequence.basic

8 lines
56 B
Plaintext

i = 1
repeat
print i
i = i + 1
until i = 0
end