Call a function: Difference between revisions

Line 828:
# a function's arity is a property of its behavior and not
# of its definition</lang>
=={{header|Elena}}==
Calling a closure without arguments
<lang elena>
c eval.
</lang>
Calling a closure with arguments
<lang elena>
c eval(a,b).
</lang>
Calling a closure with arguments
<lang elena>
c eval(a,b).
</lang>
 
=={{header|Elixir}}==
Anonymous user