X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=4f539100d6439b048d2ea9800b769c3be98a24a2;hb=496b7b4a5162004e33dfd3328aee7d155342f09f;hp=98ac0e23e370819a8b9e96db5387e7f64d97eb65;hpb=a0ff807fe0e69c50469e506836467da32f23f754;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 98ac0e2..4f53910 100644 --- a/Test.obn +++ b/Test.obn @@ -1,12 +1,14 @@ MODULE Test; +IMPORT Out; + VAR - a : POINTER TO RECORD END; - b : POINTER TO ARRAY OF INTEGER; - c : PROCEDURE; + f : BOOLEAN; + r, e : POINTER TO RECORD END; BEGIN - a := NIL; - b := NIL; - c := NIL; + f := r = e; + IF f THEN + Out.String('Yes'); Out.Ln; + END; END Test.