X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=0f09bade1d5103f0fca051137c9cc8b9dd5656e5;hb=0b724e12457f2507d398c51dc35200d833ce9362;hp=be037a255a86681dfd6dde8cb1ddea47041586bf;hpb=1128fa8566c932e3996abd427fc75bc4c946e656;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index be037a2..0f09bad 100644 --- a/Test.obn +++ b/Test.obn @@ -1,11 +1,13 @@ MODULE Test; -TYPE +IMPORT CPStrings, Out; - PC = ARRAY 3 OF PB; - - B = RECORD z : PC; next : PB END; - - PB = POINTER TO B; +VAR + s : ARRAY 80 OF CHAR; +BEGIN + CPStrings.IntToString(123456789, s); + Out.String(s); Out.Ln; + CPStrings.RealToString(321.123456, s); + Out.String(s); Out.Ln; END Test.