X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;ds=sidebyside;f=Test.obn;h=f0552a93a06abbaed7841faf482aae3f99251f7f;hb=6d3cfbfd343c0d069896734e32a8c490f27cb7aa;hp=682b0a049b547a2b7d2497bb118f985e1492fafa;hpb=844ae6c007ac4606ad4ac3938876b67c014bb5eb;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 682b0a0..f0552a9 100644 --- a/Test.obn +++ b/Test.obn @@ -1,13 +1,15 @@ MODULE Test; -IMPORT - Out, - System; +IMPORT Out; + +VAR + i : INTEGER; BEGIN Out.Open; - IF FALSE THEN - Out.String("Hello World!"); Out.Ln; + i := 48; + FOR i := 32 TO i DO + Out.Int(i, 0); Out.Char(' '); END; - System.Halt(1); + Out.Ln; END Test.