Function Calls
A function call is an expression that passes control and arguments (if any) to a function.
Syntax
function-call
:
identifier
(
argument-list
)
argument-list
:
number
identifier
function-call
Example
Last updated