プレイ日記
Lyra Bluetons
what command should I use to loop back to a previous line?
2そうだね
プレイ済み
返信[1]
親投稿
mystman12 mystman12
Put an @LABEL (You can replace "LABEL" with whatever you want) and then you can use the GOTO @LABEL command to send the code back that point. Something like this: @LOOP PRINT "TEST" GOTO @LOOP
2そうだね
プレイ済み
返信[2]
親投稿
Phillip IAmAPerson620
The label thing works, but it's a very bad habit if you plan on going into other programming languages (trust me, I had to break that habit). Using something like WHILE would be better. WHILE TRUE PRINT "TEST" WEND
1そうだね
未プレイ
返信[3]
親投稿
Lyra Bluetons
thank you!
0そうだね
プレイ済み