X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=be037a255a86681dfd6dde8cb1ddea47041586bf;hb=1128fa8566c932e3996abd427fc75bc4c946e656;hp=0bad0ad763fe3b298b127518a3af3fbc2e878678;hpb=0570527a2279ee6bd14b4c08e653b6d68369475a;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 0bad0ad..be037a2 100644 --- a/Test.obn +++ b/Test.obn @@ -1,12 +1,11 @@ MODULE Test; -IMPORT SYSTEM; +TYPE -VAR - ptr : SYSTEM.PTR; - arr : POINTER TO ARRAY OF INTEGER; + PC = ARRAY 3 OF PB; + + B = RECORD z : PC; next : PB END; + + PB = POINTER TO B; -BEGIN - NEW(arr, 20); - ptr := arr; END Test.