X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=be037a255a86681dfd6dde8cb1ddea47041586bf;hb=1128fa8566c932e3996abd427fc75bc4c946e656;hp=f4deaccac3d5c739ec23505c314e13b8d333e776;hpb=bc1691627adee054210acf7e801361fa574f8086;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index f4deacc..be037a2 100644 --- a/Test.obn +++ b/Test.obn @@ -1,17 +1,11 @@ MODULE Test; -IMPORT - Out, - System; - TYPE - RBase = RECORD END; - R = RECORD (RBase) END; -BEGIN - Out.Open; - IF FALSE THEN - Out.String("Hello World!"); Out.Ln; - END; - System.Halt(1); + PC = ARRAY 3 OF PB; + + B = RECORD z : PC; next : PB END; + + PB = POINTER TO B; + END Test.