syntax icon indicating copy to clipboard operation
syntax copied to clipboard

Better printing for string concat inside string interpolation

Open amiralies opened this issue 4 years ago • 0 comments

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`

amiralies avatar Jun 15 '21 15:06 amiralies