Solver incorrectly parses inside strings
Status: Beta
Brought to you by:
ging-buh
When a string contains brackets, the expression is not parsed correctly (The parser should skip anything bewteen quotes)
Example:
length("(")
length("()*3")
length("]")
reverse("pi()")
Note also the interesing result of
reverse("abc(1)")