Execute an expression.
Execute ( string )
| string | string representing an expression to be evaluated. |
| Success: | Returns the value of the evaluated expression. |
| Failure: | Returns "" (blank string) with @error set not to 0. |
Local $a = 1
Local $v = Execute("$a+1") ; $v is set to 2