Core Function EvalGet
From Sputnik Wiki
EvalGet( <evalObject>, <name> )
Contents |
Description
Get a from variable inside an Eval Object.
Parameters
evalObject
An Eval Object created from EvalCreate().
name
The name of the variable you wish to get.
Return Value
Success: Returns the variable.
Failure: Returns null if the variable is null or was not found.
Remarks
This gets the variable in the GLOBAL scope of the Eval Object.
Example
// Create an Eval Object my $EvalSpk = EvalCreate(); // Create and get the variable if( EvalSet($EvalSpk, "Test", 1221) ) { println("Test: " . EvalGet($EvalSpk, "Test")); }