Hi Scott, Thanks for the enthusiasm :)
> You might also want to handle the $(xxx) form of interpolation (which can > get pretty tricky I imagine), as well as all of the \ escapes, such as \n, > \x, \u, \U, etc. > `interp_parse` was written by Stefan so you can imagine it should be fairly complete, i.e. it does already handle $(xxx) and all escape characters :) When it sees an unescaped $, it will call "parse" with greedy = false, which continues until it finds a complete expression. This is how it handles $(xxx).
