変数名を文字列変数で指定((?!
A$="GWXUX"
VAR(A$)=3'つまりこの場合はGWXUXに3を代入
? GWXUX
論理式の簡略
A!=0&&B!=0→!!(A*B)
D>=150→D>149
IF BUTTON()AND#UP THEN DEC Y ELSEIF BUTTON()AND#DOWN THEN INC Y→
Y=Y+(BUTTON AND 1)-(BUTTON AND 2)
スプライト
spset 0,1'みかん
while 1
b=button(0)
if b and #up then dec y
if b and #down then inc y
if b and #left then dec x
if b and #right then inc x
vsync'これ大事なおまじない
wend
でほかの初心者に追いつけるよ!