X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;ds=inline;f=Test.obn;h=f4deaccac3d5c739ec23505c314e13b8d333e776;hb=bc1691627adee054210acf7e801361fa574f8086;hp=0b020f71a79862e5a3510e07528b982ea6a21749;hpb=879793eaf1d6378593f78a192f2961670f686530;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 0b020f7..f4deacc 100644 --- a/Test.obn +++ b/Test.obn @@ -4,8 +4,14 @@ IMPORT Out, System; +TYPE + RBase = RECORD END; + R = RECORD (RBase) END; + BEGIN Out.Open; - Out.String("Hello World!"); Out.Ln; + IF FALSE THEN + Out.String("Hello World!"); Out.Ln; + END; System.Halt(1); END Test.