X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=0f09bade1d5103f0fca051137c9cc8b9dd5656e5;hb=0b724e12457f2507d398c51dc35200d833ce9362;hp=8249fb77223116fd24082f63a7dba78821d98fe1;hpb=3cd41dedaffe60018890cbe66baea63691fe62e8;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 8249fb7..0f09bad 100644 --- a/Test.obn +++ b/Test.obn @@ -1,8 +1,13 @@ MODULE Test; -IMPORT Out; +IMPORT CPStrings, Out; + +VAR + s : ARRAY 80 OF CHAR; BEGIN - Out.Open; - Out.String("Hello World!"); Out.Ln; + CPStrings.IntToString(123456789, s); + Out.String(s); Out.Ln; + CPStrings.RealToString(321.123456, s); + Out.String(s); Out.Ln; END Test.