X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=950aa0a9ca7e9993974152c16cfff3bc01beb0fc;hb=f34b0f1f6a54eda1ad328576e48d92b96ad160ac;hp=be037a255a86681dfd6dde8cb1ddea47041586bf;hpb=1128fa8566c932e3996abd427fc75bc4c946e656;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index be037a2..950aa0a 100644 --- a/Test.obn +++ b/Test.obn @@ -1,11 +1,14 @@ MODULE Test; -TYPE - - PC = ARRAY 3 OF PB; +IMPORT Out; - B = RECORD z : PC; next : PB END; +TYPE + Name = ARRAY 16 OF CHAR; - PB = POINTER TO B; +VAR + key : ARRAY 128 OF Name; + name : Name; +BEGIN + IF name > name THEN Out.Ln; END; END Test.