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,9 @@
PROC main:
REM Declare an integer array of 10 elements and a string array of 10 elements, each up to 12 characters long.
LOCAL array1%(10),array2$(10,12)
REM Array element count starts at 1.
array1%(1)=128
array2$(10)="Rosetta Code"
PRINT array1%(1),array2$(10)
GET
ENDP