syntax
syntax copied to clipboard
Better printing for string concat inside string interpolation
I think
let x = `foo${x ++ " " ++ y}bar`
should be printed as it is or
let x = `foo${x} ${y}bar`
instead of
let x = `foo${x}${" "}${y}bar`