Calling a function

function_name( [arg1, ... ] );
Example:
// Calls the sin function:
sin( 10 );

A function is called by writing its name, followed by (). If the function takes arguments, the arguments are passed, in the order listed in the function declaration, in the parentheses.



Related articles

Functions tutorial