Data update
This commit is contained in:
parent
72eb4943cb
commit
4d5544505c
2347 changed files with 62432 additions and 16731 deletions
9
Task/Arrays/OPL/arrays.opl
Normal file
9
Task/Arrays/OPL/arrays.opl
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue