Eval
Eval is a special function that accepts a string that is itself an OML script. The function evaluates the script and returns the appropriate value.
A=eval('1+2*3')
The value of A after
this statement is 7. b=4
a=eval('2*b+1')
The value of
A after this statement is 9.eval('a=4');
a => 4