Add support for Ruby/Python/etc style formatting string literals
Closed this issue · 0 comments
andrew-johnson-4 commented
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) ";"