maybe you can make a simple movement game with BUTTON() as input to move a little space ship letter using this code:
@LOOP
B=BUTTON()
IF B==1 THEN Y=Y-1
IF B==2 THEN Y=Y+1
IF B==4 THEN X=X-1
IF B==8 THEN X=X+1
CLS
LOCATE X, Y, 50
PRINT"O"
WAIT 1
GOTO@LOOP
modify the code and see what happens.. B, X and Y are variables. They have a number or word stored. Imagine a variable as a drawer with a
1そうだね 未プレイ