Call a function: Difference between revisions

(Added an ALGOL 68 header and examples.)
Line 1,528:
 
With partial application, the arguments are applied in the same order than they are defined in the signature of the function, except if there are labeled arguments, then it is possible to use these labels to partially apply the arguments in any order.
 
=={{header|Oforth}}==
 
Oforth provides functions (global prodecure, without receiver) and methods (need a receiver).
 
Oforth uses RPN notation. Arguments must be on the stack before calling a function or method. So, the same syntax is use for calling a function with or without prameters.
 
If f is a function and c b a ares objects :
 
=={{header|PARI/GP}}==
1,015

edits