<@U0BHS1Y07> &gt; an application written with kot...
# getting-started
m
@voddan
an application written with kotlin has NO performance drawbacks
This is absolutely not correct. I mean performance issues in runtime. E. g. this code
Copy code
fun main(args: Array<String>) {
    something()
}
inline fun something(value: String = “value”) {
}
will compile to something awful.