X-Git-Url: http://deadsoftware.ru/gitweb?p=dsw-obn.git;a=blobdiff_plain;f=Test.obn;h=f0552a93a06abbaed7841faf482aae3f99251f7f;hp=8c3a8d1458efc80ddf4837c106b664b70a3abfae;hb=6d3cfbfd343c0d069896734e32a8c490f27cb7aa;hpb=9f8036eb00032fa7f756113365cb42e05ab262df diff --git a/Test.obn b/Test.obn index 8c3a8d1..f0552a9 100644 --- a/Test.obn +++ b/Test.obn @@ -3,16 +3,13 @@ MODULE Test; IMPORT Out; VAR - msg : ARRAY 20 OF CHAR; + i : INTEGER; BEGIN Out.Open; - COPY("Hello World!", msg); - Out.String(msg); Out.Ln; - COPY("Hell!", msg); - Out.String(msg); Out.Ln; - COPY("The quick brown fox jumps over the lazy dog", msg); - Out.String(msg); Out.Ln; - msg := "Hello World!"; - Out.String(msg); Out.Ln; + i := 48; + FOR i := 32 TO i DO + Out.Int(i, 0); Out.Char(' '); + END; + Out.Ln; END Test.