X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=da60894a8f758fa1ea09b7ef7f8195caa7367b55;hb=dd188cb697c08d52aefb144a4f3a943dbf3388c5;hp=67a35e4ef616fb5f76e91b2f1cf9a5b60eb0ffbc;hpb=ba1a55241f3841d1254317d76d45322c85fb687b;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 67a35e4..da60894 100644 --- a/Test.obn +++ b/Test.obn @@ -1,14 +1,11 @@ MODULE Test; -IMPORT Out; +PROCEDURE A; +END A; + +PROCEDURE B; + PROCEDURE A; + END A; +END B; -BEGIN - 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.