RosettaCodeData/Task/Arrays/OPL/arrays.opl

11 lines
236 B
Text
Raw Permalink Normal View History

2026-02-01 16:33:20 -08:00
REM As far as I know, there is no way to have dynamic arrays.
2025-06-11 20:16:52 -04:00
PROC main:
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