Data update

This commit is contained in:
Ingy döt Net 2025-06-11 20:16:52 -04:00
parent 72eb4943cb
commit 4d5544505c
2347 changed files with 62432 additions and 16731 deletions

View file

@ -0,0 +1,5 @@
NEW
DIM A%(1,1)
A%(0,0)=1
A%(0,1)=2
CALL-151 : REM enter the machine language monitor to inspect memory

View file

@ -0,0 +1 @@
800.817 E000G dump the array memory and cold start BASIC

View file

@ -0,0 +1 @@
DIM A(4,3,2,1)

View file

@ -0,0 +1,5 @@
0 DATA3
1 DIM A(4,3,2,1)
2 GET A(4,3,2,1)
3 INPUT A(4,3,2,1)
4 READ A(4,3,2,1)

View file

@ -0,0 +1 @@
LET A(4,3,2,1) = 1 : REM the LET keyword is optional

View file

@ -0,0 +1 @@
PRINT A(4,3,2,1) : REM arrays can be accessed in expressions

View file

@ -0,0 +1 @@
A(4,3,2,1) = 2

View file

@ -0,0 +1 @@
PRINT A(4,3,2,1)