X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=be037a255a86681dfd6dde8cb1ddea47041586bf;hb=1128fa8566c932e3996abd427fc75bc4c946e656;hp=82fbedbbc7c705e6e6a7a46f3cfb2a2e3c34c7d2;hpb=2985d77f3ee4af98761b28b4ce1e57582d8c8619;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 82fbedb..be037a2 100644 --- a/Test.obn +++ b/Test.obn @@ -1,9 +1,11 @@ MODULE Test; -VAR - i : SHORTINT; - s : SET; +TYPE + + PC = ARRAY 3 OF PB; + + B = RECORD z : PC; next : PB END; + + PB = POINTER TO B; -BEGIN - i := SHORT(12345); END Test.