X-Git-Url: https://deadsoftware.ru/gitweb?p=dsw-obn.git;a=blobdiff_plain;f=Test.obn;h=da60894a8f758fa1ea09b7ef7f8195caa7367b55;hp=0f09bade1d5103f0fca051137c9cc8b9dd5656e5;hb=dd188cb697c08d52aefb144a4f3a943dbf3388c5;hpb=0b724e12457f2507d398c51dc35200d833ce9362 diff --git a/Test.obn b/Test.obn index 0f09bad..da60894 100644 --- a/Test.obn +++ b/Test.obn @@ -1,13 +1,11 @@ MODULE Test; -IMPORT CPStrings, Out; +PROCEDURE A; +END A; -VAR - s : ARRAY 80 OF CHAR; +PROCEDURE B; + PROCEDURE A; + END A; +END B; -BEGIN - CPStrings.IntToString(123456789, s); - Out.String(s); Out.Ln; - CPStrings.RealToString(321.123456, s); - Out.String(s); Out.Ln; END Test.