Closed bsuth closed 1 year ago
If a string only contains a brace, it will currently be parsed as interpolation:
print("\{")
This is because the escape will be removed by the tokenizer, but then interpreted as an interpolation by the compiler
https://github.com/erde-lang/erde/commit/e34965b7885aeb1f767769f4abefa8f948a6860e
If a string only contains a brace, it will currently be parsed as interpolation:
This is because the escape will be removed by the tokenizer, but then interpreted as an interpolation by the compiler