[Review] SE-0182 - String Newline Escaping

I can, but it felt more odd to me than a blank line. But that's debatable.

···

On 20 Jul 2017, at 01:40, Chris Lattner <clattner@nondot.org> wrote:

On Jul 17, 2017, at 4:43 AM, David Hart via swift-evolution <swift-evolution@swift.org> wrote:

To add a data point, I migrated the Swift Package Manager to use Swift 4’s multi-line strings this weekend. Nearly all of the resulting multi-line strings required an ending new-line, forcing me to write the following pattern everywhere:

let text = ""”
    lorem ipsum dolor sit amet
    consectetur adipiscing elit
    sed do eiusmod

    “”"

Can’t you use ... eiusmod\n instead of a blank line?

-Chris