-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
Description
let name = "world"
let message = "up"
"hello #{name} whats #{message} result: #{2 + 2 * 2}"becomes:
"hello " + (name).to_s() + " whats " + (message).to_s() + " result: " + (2 + 2 * 2).to_s()The parser will parse it as a StringInterpolationNode and a seperate transformation pass will do the rewriting.
Reactions are currently unavailable