Keyword call
Description
Used to execute a declared function, providing appropriate parameters when necessary.
Example
function fancyPrint : with string as toPrint;
println "---------------------------------"
println "> ", toPrint;
return;
string message = "Hello. How are you?";
call fancyPrint : message;