X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=0bad0ad763fe3b298b127518a3af3fbc2e878678;hb=0570527a2279ee6bd14b4c08e653b6d68369475a;hp=0b020f71a79862e5a3510e07528b982ea6a21749;hpb=879793eaf1d6378593f78a192f2961670f686530;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 0b020f7..0bad0ad 100644 --- a/Test.obn +++ b/Test.obn @@ -1,11 +1,12 @@ MODULE Test; -IMPORT - Out, - System; +IMPORT SYSTEM; + +VAR + ptr : SYSTEM.PTR; + arr : POINTER TO ARRAY OF INTEGER; BEGIN - Out.Open; - Out.String("Hello World!"); Out.Ln; - System.Halt(1); + NEW(arr, 20); + ptr := arr; END Test.