Call a function: Difference between revisions

m
add ooRexx
m (add ooRexx)
Line 4,101:
* stating ''at the call site'' whether arguments are passed by value or by reference
* partial application
 
=={{header|ooRexx}}==
This is to show how a built-in function is invoked when an internal function on the dame name in present.
<lang oorexx>say 'DATE'()
Say date()
Exit
daTe: Return 'my date' </lang>
{{out}}
<pre>H:\>rexx fdate
31 Mar 2022
my date</pre>
 
=={{header|Perl}}==
2,295

edits