X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=f0552a93a06abbaed7841faf482aae3f99251f7f;hb=c535b4be889716bfd37a4f0dd888f398534bc306;hp=8249fb77223116fd24082f63a7dba78821d98fe1;hpb=3cd41dedaffe60018890cbe66baea63691fe62e8;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 8249fb7..f0552a9 100644 --- a/Test.obn +++ b/Test.obn @@ -2,7 +2,14 @@ MODULE Test; IMPORT Out; +VAR + i : INTEGER; + BEGIN Out.Open; - Out.String("Hello World!"); Out.Ln; + i := 48; + FOR i := 32 TO i DO + Out.Int(i, 0); Out.Char(' '); + END; + Out.Ln; END Test.