X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=0bad0ad763fe3b298b127518a3af3fbc2e878678;hb=0570527a2279ee6bd14b4c08e653b6d68369475a;hp=67132268d6a753e3cfdc990ac2dec0eaed6e1670;hpb=d25fb653bfe19a696d3f53abd784d32ba2d3ee03;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 6713226..0bad0ad 100644 --- a/Test.obn +++ b/Test.obn @@ -1,13 +1,12 @@ MODULE Test; +IMPORT SYSTEM; + VAR - i : INTEGER; - f : REAL; - d : LONGREAL; + ptr : SYSTEM.PTR; + arr : POINTER TO ARRAY OF INTEGER; BEGIN - i := 5 DIV 3; - f := 5 / 3; - d := 5 / 3.0; - d := 5 / 3.0D0; + NEW(arr, 20); + ptr := arr; END Test.