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
$a=1
$v=Execute("$a+1") ; $v is set to 2