RosettaCodeData/Task/Loops-While/Sinclair-ZX81-BASIC/loops-while.sinclair

6 lines
78 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
10 LET I=1024
20 IF I=0 THEN GOTO 60
30 PRINT I
40 LET I=INT (I/2)
50 GOTO 20