X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=82fbedbbc7c705e6e6a7a46f3cfb2a2e3c34c7d2;hb=2985d77f3ee4af98761b28b4ce1e57582d8c8619;hp=8c3a8d1458efc80ddf4837c106b664b70a3abfae;hpb=9f8036eb00032fa7f756113365cb42e05ab262df;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 8c3a8d1..82fbedb 100644 --- a/Test.obn +++ b/Test.obn @@ -1,18 +1,9 @@ MODULE Test; -IMPORT Out; - VAR - msg : ARRAY 20 OF CHAR; + i : SHORTINT; + s : SET; 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 := SHORT(12345); END Test.