kotlin multiline string
fun indentedStringLiteral() =
"""
First Line
Second Line
Third Line
"""
fun unindentedStringLiteral() =
"""
First Line
Second Line
Third Line
""".trimIndent()
fun main(args: Array<String>) {
println(indentedStringLiteral())
// First line
// Second Line
println(unindentedStringLiteral())
//First line
//Second Line
//Third line
}