Core Function Call
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> Call <function>, <expressions> </pre> === Description === Calls a function contained in a string parameter. === function === The name of the user function to call. ===...")
Newer edit →
(Created page with "<pre> Call <function>, <expressions> </pre> === Description === Calls a function contained in a string parameter. === function === The name of the user function to call. ===...")
Newer edit →
Revision as of 19:00, 5 December 2011
Call <function>, <expressions>
Contents |
Description
Calls a function contained in a string parameter.
function
The name of the user function to call.
expressions
None, One or more arguments to send to the function.
Return Value
Acts like a regular function call.
Remarks
The function CAN be a built-in Sputnik function or a user defined one.
The function can pass arguments to functions, also & pointer parameters are supported.
Example
Call( "Test", 10, 20); Function Test($a, $b) { println("Hello from test ($a, $b)"); }