12 lines
171 B
Kotlin
Vendored
12 lines
171 B
Kotlin
Vendored
fun String.trimIndent() = this
|
|
|
|
fun test() = doTest("""
|
|
def foo(a)
|
|
a ? 0 : 1
|
|
end
|
|
""".trimIndent())
|
|
|
|
fun doTest(rubyCode: String) {
|
|
// some code here
|
|
}
|