X-Git-Url: https://deadsoftware.ru/gitweb?p=dsw-obn.git;a=blobdiff_plain;f=Test.obn;h=98ac0e23e370819a8b9e96db5387e7f64d97eb65;hp=682b0a049b547a2b7d2497bb118f985e1492fafa;hb=a0ff807fe0e69c50469e506836467da32f23f754;hpb=844ae6c007ac4606ad4ac3938876b67c014bb5eb diff --git a/Test.obn b/Test.obn index 682b0a0..98ac0e2 100644 --- a/Test.obn +++ b/Test.obn @@ -1,13 +1,12 @@ MODULE Test; -IMPORT - Out, - System; +VAR + a : POINTER TO RECORD END; + b : POINTER TO ARRAY OF INTEGER; + c : PROCEDURE; BEGIN - Out.Open; - IF FALSE THEN - Out.String("Hello World!"); Out.Ln; - END; - System.Halt(1); + a := NIL; + b := NIL; + c := NIL; END Test.