strings that can evaluate variables inside
implement strings that can evaluate variables and simple expression inside.
eg.
>>> x = "hello" >>> v"inserted ${x}" inserted hello
implemented
>>> x = "hello" >>> e"inserted ${x}" "inserted hello"
implement strings that can evaluate variables and simple expression inside.
eg.
>>> x = "hello" >>> v"inserted ${x}" inserted hello