berry-lang / berry

A ultra-lightweight embedded scripting language optimized for microcontrollers.
https://berry-lang.github.io
MIT License
782 stars 95 forks source link

Remove left-over parsing of strings #413

Closed s-hadinger closed 2 months ago

s-hadinger commented 2 months ago

I initially allowed syntax like f "a" to be equivalent to f("a") only for a single string literal.

This is no longer necessary, f-strings are implemented at lexer level.