Simple types / Strings

//from JDK 15
var lines = """
    1. First line
    2. Second \
    line
        3. Third line
    4. Fourth "line"
    """;

System.out.println(lines);

//prints:
//1. First line
//2. Second line
//    3. Third line
//4. Fourth "line"

var numbers = """
    one \s
    two \s
    three
    """;
System.out.println(numbers);

//prints:
//'one  '
//'two  '
//'three'