X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=0bad0ad763fe3b298b127518a3af3fbc2e878678;hb=0570527a2279ee6bd14b4c08e653b6d68369475a;hp=98ac0e23e370819a8b9e96db5387e7f64d97eb65;hpb=a0ff807fe0e69c50469e506836467da32f23f754;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 98ac0e2..0bad0ad 100644 --- a/Test.obn +++ b/Test.obn @@ -1,12 +1,12 @@ MODULE Test; +IMPORT SYSTEM; + VAR - a : POINTER TO RECORD END; - b : POINTER TO ARRAY OF INTEGER; - c : PROCEDURE; + ptr : SYSTEM.PTR; + arr : POINTER TO ARRAY OF INTEGER; BEGIN - a := NIL; - b := NIL; - c := NIL; + NEW(arr, 20); + ptr := arr; END Test.