RosettaCodeData/Task/Loops-While/ASIC/loops-while.asic

10 lines
70 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
REM Loops/While
I = 1024
WHILE I > 0
PRINT I
I = I / 2
WEND
END