Calling Functions


<function name>(<argument>, <argument>);
// Two examples from Declaring.html
myFunction(1,2,3);               // throws error, since myFunction only expects two parameters
someFunction(3,"Nina",123,45.2);

To call from a pointer, see the keyword call