Call a function: Difference between revisions

Content added Content deleted
Line 1,812: Line 1,812:
<syntaxhighlight lang="easylang">
<syntaxhighlight lang="easylang">
call somesubr # call a subroutine
call somesubr # call a subroutine
call someproc1 # call a procedure with no parameters
call someproc1 # call a procedure with no arguments
call someproc2 arg1 arg2 res # call a procedure with arguments, the last one is an inout argument
call someproc2 arg1 arg2 res # call a procedure with in-arguments and an inout-argument
</syntaxhighlight>
</syntaxhighlight>