stantronic
03/28/2022, 3:13 PMconst val rawString = """
this
is
a
raw string
""".trimIndent()
is currently an error. But could it be changed at compile time to the equivalent of
const val rawString = "this\nis\na\nraw string"
rnett
03/28/2022, 4:29 PMstantronic
03/28/2022, 7:29 PM