andrew-johnson-4/LSTS

Add support for Ruby/Python/etc style formatting string literals

Closed this issue · 0 comments

Is your feature request related to a problem? Please describe.
literal string formatting can be verbose, the dynamic languages seem to handle formatting better:

Describe the solution you'd like
f"let {x} = {expr};"

produces

literal "let " (x as String) " = " (expr as String) ";"