X-Git-Url: http://deadsoftware.ru/gitweb?p=dsw-obn.git;a=blobdiff_plain;f=Test.obn;h=ea2d143a6b9a4cd952a1d30505f5ff09d90616ea;hp=8249fb77223116fd24082f63a7dba78821d98fe1;hb=HEAD;hpb=3cd41dedaffe60018890cbe66baea63691fe62e8 diff --git a/Test.obn b/Test.obn index 8249fb7..ea2d143 100644 --- a/Test.obn +++ b/Test.obn @@ -1,8 +1,17 @@ MODULE Test; -IMPORT Out; + VAR + x : INTEGER; + p : PROCEDURE; + + PROCEDURE X; + BEGIN + x := 1; + x := 2; + x := 3; + p + END X; BEGIN - Out.Open; - Out.String("Hello World!"); Out.Ln; + X; END Test.