you still could define separate functions with exp...
# announcements
s
you still could define separate functions with explisit default params to be able to call it from java
Copy code
fun foo(bar:String = "Default") -> 

fun foo() = foo("Default")
fun foo(bar:String)