Default arguments and named parameters aside, does...
# getting-started
f
Default arguments and named parameters aside, does Kotlin follow the exact same rules regarding function overloading as Java?
s
one difference is that technically, you can overload based on generic types on the JVM, but you’ll have to give the function a distinct
@JvmName
f
thanks