X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=950aa0a9ca7e9993974152c16cfff3bc01beb0fc;hb=f34b0f1f6a54eda1ad328576e48d92b96ad160ac;hp=fa347cddf19074ac48f9ac84d99c4993074f5aef;hpb=1233fb1d5d8f67a8f5e970386c1c4cbb6691ec04;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index fa347cd..950aa0a 100644 --- a/Test.obn +++ b/Test.obn @@ -1,21 +1,14 @@ MODULE Test; -IMPORT Files, Out; +IMPORT Out; + +TYPE + Name = ARRAY 16 OF CHAR; VAR - f : Files.File; - r : Files.Rider; - len : LONGINT; - x : POINTER TO ARRAY OF CHAR; + key : ARRAY 128 OF Name; + name : Name; BEGIN - f := Files.Old("Test.obn"); - ASSERT(f # NIL); - Files.Set(r, f, 0); - - len := Files.Length(f); - NEW(x, len + 1); - - Files.ReadBytes(r, x, len); - Out.String(x^); Out.Ln; + IF name > name THEN Out.Ln; END; END Test.