X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=da60894a8f758fa1ea09b7ef7f8195caa7367b55;hb=dd188cb697c08d52aefb144a4f3a943dbf3388c5;hp=4f539100d6439b048d2ea9800b769c3be98a24a2;hpb=496b7b4a5162004e33dfd3328aee7d155342f09f;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 4f53910..da60894 100644 --- a/Test.obn +++ b/Test.obn @@ -1,14 +1,11 @@ MODULE Test; -IMPORT Out; +PROCEDURE A; +END A; -VAR - f : BOOLEAN; - r, e : POINTER TO RECORD END; +PROCEDURE B; + PROCEDURE A; + END A; +END B; -BEGIN - f := r = e; - IF f THEN - Out.String('Yes'); Out.Ln; - END; END Test.