About this task
A way to pass information to either internal or external subroutines
or functions is through arguments. When calling a subroutine, you can pass
up to 20 arguments separated by commas on the CALL instruction as
follows:
CALL subroutine_name argument1, argument2, argument3,…
In a function call, you can pass up to 20 arguments separated by
commas.
function(argument1,argument2,argument3,…)