You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not sure if we should add a special syntax for strings with interpolation (like the s prefix in the example above) or just allow interpolation in every string (and use \$ to write a real dollar sign).
We should also add a syntax for multiline strings, like:
let s = """This is a
string with
several lines"""
This thread is open for suggestions and discussion.
Add a nicer way to construct strings.
So instead of
we could write:
I am not sure if we should add a special syntax for strings with interpolation (like the
sprefix in the example above) or just allow interpolation in every string (and use\$to write a real dollar sign).We should also add a syntax for multiline strings, like:
This thread is open for suggestions and discussion.