Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 126
Closed
Labels
Description
Created by: scudly
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 """.