X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=67a35e4ef616fb5f76e91b2f1cf9a5b60eb0ffbc;hb=ba1a55241f3841d1254317d76d45322c85fb687b;hp=98ac0e23e370819a8b9e96db5387e7f64d97eb65;hpb=a0ff807fe0e69c50469e506836467da32f23f754;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 98ac0e2..67a35e4 100644 --- a/Test.obn +++ b/Test.obn @@ -1,12 +1,14 @@ MODULE Test; -VAR - a : POINTER TO RECORD END; - b : POINTER TO ARRAY OF INTEGER; - c : PROCEDURE; +IMPORT Out; BEGIN - a := NIL; - b := NIL; - c := NIL; + 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.