Call a function: Difference between revisions

Content added Content deleted
m (add ooRexx)
Line 4,101: Line 4,101:
* stating ''at the call site'' whether arguments are passed by value or by reference
* stating ''at the call site'' whether arguments are passed by value or by reference
* partial application
* 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}}==
=={{header|Perl}}==