glycerine/zygomys

parser should repect raw string literals over multiple lines

glycerine opened this issue · 0 comments

the new parser doesn't respect raw strings when they don't fit on one line.

zygo> ` hello
zygo>  there `

and while when nested in an expression the parser recognizes them

zygo> (def hi `
... greetings
...  from 
...  planet 
...  zygo1
... `
... )
`greetings from  planet  zygo1`
zygo> 

above the newlines should not be ignored