Am I correct that ```Sql(""" .... multiline string...
# terpal
a
Am I correct that
Copy code
Sql(""" .... multiline string ... """)
Is not supported?
a
Hi. It's supported. You can do:
Copy code
Sql(
"""...
   ...
   ...
"""
)
What I don't yet support is:
Copy code
Sql(
"""...
   ...
   ...
""".trimIndent()
)
Unfortunately intellij inserts it automatically but I think I'll made and update to terpal to just ignore it so at least compilation won't break.
❤️ 1
in 2.0.0.PL-1.2.0 it will ignore
trimIndent