Add same test for local array

This commit is contained in:
2025-09-04 20:17:41 +00:00
parent 557f7cabb7
commit 0fb08c2793

View File

@@ -11,6 +11,12 @@ STOP
SUB subroutine()
DIM local(4) AS UByte => { 4Ch, 4Fh, 43h, 41h, 4Ch }
PRINT "@local = ";@local
PRINT "@local(0) = ";@local(0)
PRINT "@local DATA PTR = "; PEEK(UInteger, @local + 2 )
PRINT
refer(6, @global)
refer(5, @local)
END SUB