X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=67a35e4ef616fb5f76e91b2f1cf9a5b60eb0ffbc;hb=ba1a55241f3841d1254317d76d45322c85fb687b;hp=fa347cddf19074ac48f9ac84d99c4993074f5aef;hpb=1233fb1d5d8f67a8f5e970386c1c4cbb6691ec04;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index fa347cd..67a35e4 100644 --- a/Test.obn +++ b/Test.obn @@ -1,21 +1,14 @@ MODULE Test; -IMPORT Files, Out; - -VAR - f : Files.File; - r : Files.Rider; - len : LONGINT; - x : POINTER TO ARRAY OF CHAR; +IMPORT Out; 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; + Out.String("A"); + Out.Char("A"); + Out.Ln; + ASSERT("A" = 041X); + ASSERT(041X = "A"); + ASSERT(ORD("A") = 041H); + ASSERT(041H = ORD("A")); + ASSERT("A" = "A"); END Test.