X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=da60894a8f758fa1ea09b7ef7f8195caa7367b55;hb=dd188cb697c08d52aefb144a4f3a943dbf3388c5;hp=8c3a8d1458efc80ddf4837c106b664b70a3abfae;hpb=9f8036eb00032fa7f756113365cb42e05ab262df;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 8c3a8d1..da60894 100644 --- a/Test.obn +++ b/Test.obn @@ -1,18 +1,11 @@ MODULE Test; -IMPORT Out; +PROCEDURE A; +END A; -VAR - msg : ARRAY 20 OF CHAR; +PROCEDURE B; + PROCEDURE A; + END A; +END B; -BEGIN - Out.Open; - COPY("Hello World!", msg); - Out.String(msg); Out.Ln; - COPY("Hell!", msg); - Out.String(msg); Out.Ln; - COPY("The quick brown fox jumps over the lazy dog", msg); - Out.String(msg); Out.Ln; - msg := "Hello World!"; - Out.String(msg); Out.Ln; END Test.