X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=0f09bade1d5103f0fca051137c9cc8b9dd5656e5;hb=0b724e12457f2507d398c51dc35200d833ce9362;hp=682b0a049b547a2b7d2497bb118f985e1492fafa;hpb=844ae6c007ac4606ad4ac3938876b67c014bb5eb;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 682b0a0..0f09bad 100644 --- a/Test.obn +++ b/Test.obn @@ -1,13 +1,13 @@ MODULE Test; -IMPORT - Out, - System; +IMPORT CPStrings, Out; + +VAR + s : ARRAY 80 OF CHAR; BEGIN - Out.Open; - IF FALSE THEN - Out.String("Hello World!"); Out.Ln; - END; - System.Halt(1); + CPStrings.IntToString(123456789, s); + Out.String(s); Out.Ln; + CPStrings.RealToString(321.123456, s); + Out.String(s); Out.Ln; END Test.