Loops/Do-while: Difference between revisions

m
(Loops/Do-while in Run BASIC)
Line 624:
==={{header|Run BASIC}}===
Run Basic does not have a <code>do .. while</code> construct. Equivalent using conditional jump:
<lang runbasiclb>i = 0
[start]
i = i +1
2,131

edits