Function Reference


Execute

Execute an expression.

Execute ( string )

Parameters

string string representing an expression to be evaluated.

Return Value

Success: the value of the evaluated expression.
Failure: "" (empty string) and sets the @error flag to non-zero.

Related

Assign, Call, Eval

Example

Local $a = 1
Local $v = Execute("$a+1") ; $v is set to 2