Swift multiline strings [support the use of a backslash at the end of a line](https://swiftfiddle.com/s6dk6fs52fcmhb6rpjnd2wm3xu) to join that line to the following line. CUE should probably support this too. For example: ``` x: """ abc\ def """ ``` would be equivalent to: ``` x: "abcdef" ```