s
Note:
The Eval function cannot refer to user-defined variables and functions. For example:
In this case, the Eval function does not recognize s, and so returns an error. Any subsequent functions that make reference to the variable s also fail.
eval(“10*3+5*4″)
eval(“hello”)

Eval