hi all I have a question about Kotlin ABI Is funct...
# compiler
l
hi all I have a question about Kotlin ABI Is function parameters a part of ABI? In java, when I change a parameter name, I see that the compile avoidance is applied, however, it isn't when I try with Kotlin
1
v
As you can use named arguments when you call the function, it would be strange if not.
l
oh yeah, I was trying to find a usage scenario for the parameters but forgot this named arguments feature So it makes sense now to me. Thanks
👌 1