X-Git-Url: http://deadsoftware.ru/gitweb?p=dsw-obn.git;a=blobdiff_plain;f=Test.obn;h=0b020f71a79862e5a3510e07528b982ea6a21749;hp=8249fb77223116fd24082f63a7dba78821d98fe1;hb=879793eaf1d6378593f78a192f2961670f686530;hpb=3cd41dedaffe60018890cbe66baea63691fe62e8 diff --git a/Test.obn b/Test.obn index 8249fb7..0b020f7 100644 --- a/Test.obn +++ b/Test.obn @@ -1,8 +1,11 @@ MODULE Test; -IMPORT Out; +IMPORT + Out, + System; BEGIN Out.Open; Out.String("Hello World!"); Out.Ln; + System.Halt(1); END Test.