当我尝试通过 Mac OS X SDK 中的 orbBasic 加载器将以下程序加载到球体时,它需要一段时间才能加载然后它不执行(没有任何消息)
10 A=50
20 P=4
30 LEDC rnd 8
40 for X=0 to P-1
50 L=X*360/P
60 if L>45 and L<136 then goto 69
61 if L>225 and L<306 then goto 69
62 if L>0 and L<46 then goto 67
63 if L>135 and L<226 then goto 67
64 if L>305 and L<360 then goto 67
67 LEDC 2
68 goto 70
69 LEDC 1
70 goroll L,80,1
80 delay 30*A
90 goroll L,0,0
100 delay 300
110 next X
120 A=A*3/4
130 if A<10 then end
140 goto 30
如果我删除第 60...69 行,它的工作原理似乎与多个 if 语句有些问题