X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=682b0a049b547a2b7d2497bb118f985e1492fafa;hb=844ae6c007ac4606ad4ac3938876b67c014bb5eb;hp=8249fb77223116fd24082f63a7dba78821d98fe1;hpb=3cd41dedaffe60018890cbe66baea63691fe62e8;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 8249fb7..682b0a0 100644 --- a/Test.obn +++ b/Test.obn @@ -1,8 +1,13 @@ MODULE Test; -IMPORT Out; +IMPORT + Out, + System; BEGIN Out.Open; - Out.String("Hello World!"); Out.Ln; + IF FALSE THEN + Out.String("Hello World!"); Out.Ln; + END; + System.Halt(1); END Test.