escape sequences not working properly

Issue #7 resolved
mezzodrinker created an issue
> print("h\ni");
h\ni
> print("h\ai");
h\ai
> print("h\"i");
h\"i
> print("h\\"i");
stdin:1: no viable alternative at input 'print("h\\"i'
> print("h\\i");
h\\i

It seems like the escape sequences (e.g. \n, \\, \") are recognized but not converted.

Comments (3)

  1. Log in to comment