X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=c039f87259a54823da72904d8cacb593996e0b7c;hb=9531d399c60190a8daf625dd99f9c141753bba5e;hp=f76917867cb0d1bcb880b7e0cf655f116919947f;hpb=8c59e1e41700802575cefb289600028909c5ffc2;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index f769178..c039f87 100644 --- a/Test.obn +++ b/Test.obn @@ -1,12 +1,11 @@ MODULE Test; VAR - i : SHORTINT; - s : SET; + x : PROCEDURE(i : INTEGER); -PROCEDURE X; +PROCEDURE X(a : INTEGER); END X; BEGIN - i := SHORT(12345); + x := X; END Test.