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
If you attempt to create a pair of multi-line strings, they are both merged into one string:
String foo = """
hi
bye
""";
String bar = """
wee
woo
""";
println( foo );
generates
hi
bye
""";
String bar = """
wee
woo
and the variable "bar" does not exist.
The expected behavior is that foo and bar should each be a double-line string. "foo" should terminate with the """ line immediately below "bye". Multi-line strings should terminate at the first line that contains """.
The text was updated successfully, but these errors were encountered:
This issue has been automatically locked. To avoid confusion with reports that have already been resolved, closed issues are automatically locked 30 days after the last comment. Please open a new issue for related bugs.
Created by: scudly
If you attempt to create a pair of multi-line strings, they are both merged into one string:
generates
and the variable "bar" does not exist.
The expected behavior is that foo and bar should each be a double-line string. "foo" should terminate with the """ line immediately below "bye". Multi-line strings should terminate at the first line that contains """.
The text was updated successfully, but these errors were encountered: