1
0

多次元配列を実�

This commit is contained in:
otya128
2015-06-12 22:00:05 +09:00
parent fd74c8b071
commit f84c4d20e5
5 changed files with 14 additions and 23 deletions

View File

@@ -53,9 +53,9 @@ FOR I=0 TO 10
IF I==1 THEN CONTINUE
?I
NEXT
VAR V[10]
VAR V[10,10]
V[0,1]=12
?V[1]
?V[0,1]
?\"ABC\"[1][0]
GOSUB @A
END