X-Git-Url: http://deadsoftware.ru/gitweb?p=dsw-obn.git;a=blobdiff_plain;f=Test.obn;h=ea2d143a6b9a4cd952a1d30505f5ff09d90616ea;hp=be037a255a86681dfd6dde8cb1ddea47041586bf;hb=HEAD;hpb=1128fa8566c932e3996abd427fc75bc4c946e656 diff --git a/Test.obn b/Test.obn index be037a2..ea2d143 100644 --- a/Test.obn +++ b/Test.obn @@ -1,11 +1,17 @@ MODULE Test; -TYPE + VAR + x : INTEGER; + p : PROCEDURE; - PC = ARRAY 3 OF PB; - - B = RECORD z : PC; next : PB END; - - PB = POINTER TO B; + PROCEDURE X; + BEGIN + x := 1; + x := 2; + x := 3; + p + END X; +BEGIN + X; END Test.