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