Could compile-time operations on raw strings ever ...
# language-evolution
s
Could compile-time operations on raw strings ever be allowed for constants - e.g.
Copy code
const val rawString = """
    this
    is
    a
    raw string
""".trimIndent()
is currently an error. But could it be changed at compile time to the equivalent of
Copy code
const val rawString = "this\nis\na\nraw string"
s
Awesome! thanks 🙂