X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=950aa0a9ca7e9993974152c16cfff3bc01beb0fc;hb=d4878eaf0861679d6af935c2078ab43cf59dcf67;hp=0bad0ad763fe3b298b127518a3af3fbc2e878678;hpb=0570527a2279ee6bd14b4c08e653b6d68369475a;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 0bad0ad..950aa0a 100644 --- a/Test.obn +++ b/Test.obn @@ -1,12 +1,14 @@ MODULE Test; -IMPORT SYSTEM; +IMPORT Out; + +TYPE + Name = ARRAY 16 OF CHAR; VAR - ptr : SYSTEM.PTR; - arr : POINTER TO ARRAY OF INTEGER; + key : ARRAY 128 OF Name; + name : Name; BEGIN - NEW(arr, 20); - ptr := arr; + IF name > name THEN Out.Ln; END; END Test.