X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=f76917867cb0d1bcb880b7e0cf655f116919947f;hb=757bfb90589d07922991e34a4cc36ef434c8e3bb;hp=67132268d6a753e3cfdc990ac2dec0eaed6e1670;hpb=d25fb653bfe19a696d3f53abd784d32ba2d3ee03;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 6713226..f769178 100644 --- a/Test.obn +++ b/Test.obn @@ -1,13 +1,12 @@ MODULE Test; VAR - i : INTEGER; - f : REAL; - d : LONGREAL; + i : SHORTINT; + s : SET; + +PROCEDURE X; +END X; BEGIN - i := 5 DIV 3; - f := 5 / 3; - d := 5 / 3.0; - d := 5 / 3.0D0; + i := SHORT(12345); END Test.