X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=4f539100d6439b048d2ea9800b769c3be98a24a2;hb=e637b466c2a4e0b0feb0f264ad4342ecfe9efd21;hp=8249fb77223116fd24082f63a7dba78821d98fe1;hpb=3cd41dedaffe60018890cbe66baea63691fe62e8;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 8249fb7..4f53910 100644 --- a/Test.obn +++ b/Test.obn @@ -2,7 +2,13 @@ MODULE Test; IMPORT Out; +VAR + f : BOOLEAN; + r, e : POINTER TO RECORD END; + BEGIN - Out.Open; - Out.String("Hello World!"); Out.Ln; + f := r = e; + IF f THEN + Out.String('Yes'); Out.Ln; + END; END Test.