• That Final New Line

    Note that the example below,

    String distinctions = """
        Très Bien
        Bien
        Assez Bien
        """;

    is equivalent to "Très Bien\nBien\nAssez Bien\n".

    What if you want to represent a multi-line string without that final \n?

    String distinctions = """
        Très Bien
        Bien
        Assez Bien""";

    This text block is equivalent to is "Très Bien\nBien\nAssez Bien".

    Thus, placing the closing delimiter on the last visible line effectively drops the last \n.