The two leftmost columns are filled with invisible tiles (When the tiles drop down after a row is cleared, I was erasing the graphics in the top row without clearing the actual array that stores the tile data)
0そうだね プレイ済み
EXEC slot - run the program in that slot. END will jump back to the original slot.
USE slot - create variables and functions from that slot. COMMON DEF functions can be called directly from the original slot, and you can use VAR() and CALL to access all variables/functions
EXEC "PRG_:NAME" - shortcut for LOAD "PRG_:NAME",FALSE:EXEC _
USE "PRG_:NAME" - shortcut for LOAD "PRG_:NAME",FALSE:USE _
0そうだね 未プレイ
That version is really old now anyway... I'll release a newer one eventually
1そうだね プレイ済み
DEF TEST1
A=7 'local (don't do this, use VAR)
END
A=3 'global
DEF TEST2
A=7 'global
END
DEF TEST3
VAR A=7 'local
END
DEF TEST4 A
A=7 'local
END
DEF TEST5 OUT A
A=7 'local
END
0そうだね 未プレイ
What they should've done from the start is make XON/XOFF/OPTION/CALL use strings instead of these weird keyword-like things.
3そうだね 未プレイ