Function Reference


Execute

Execute an expression.

Execute ( string )

Parameters

string string representing an expression to be evaluated.

Return Value

Success: Returns the value of the evaluated expression.
Failure: Returns "" (blank string) with @error set not to 0.

Remarks

None.

Related

Assign, Eval, Call

Example


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