parse(s)

Parses the contents of the string s. The operation is equivalent as typing the expression s yourself. This function may be useful in the design of functions that create functions.


Example


parse("x=9")


x

9

s="x=x+"

"x=x+"

s=s+"3"

"x=x+3"

parse(s)


x

12