From 557f7cabb703a6f6ae4b4ca717937261bc6d23b0 Mon Sep 17 00:00:00 2001 From: Neil McPhail Date: Thu, 4 Sep 2025 20:06:12 +0000 Subject: [PATCH] Added some tests at Boriel's suggestion --- array.bas | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/array.bas b/array.bas index 7524e7c..93dbca7 100644 --- a/array.bas +++ b/array.bas @@ -1,5 +1,11 @@ DIM global(5) AS UByte => { 47h, 4Ch, 4Fh, 42h, 41h, 4Ch } +CLS +PRINT "@global = "; @global +PRINT "@global(0) = "; @global(0) +PRINT "@global DATA PTR = "; PEEK(UInteger, @global + 2 ) +PRINT + subroutine() STOP