polterguy / lizzie

A script language for .Net and the CLR
https://ainiro.io/
MIT License
190 stars 27 forks source link

Escape quote #7

Closed SapphireBrand closed 5 years ago

SapphireBrand commented 5 years ago

The tokenizer should recognize \" as a quote character within a string.

SapphireBrand commented 5 years ago

Never mind; the code matches the stop character. So this is supported.

polterguy commented 5 years ago

Hehe, you can use all of these ...

"foo"
'foo'
@"foo"

And they match the expectations a C# developer would have, so I think you should be pretty well covered ... :)