``` fun a() {} fun a(param: Int = 1) {} ``` When I...
# announcements
m
Copy code
fun a() {}
fun a(param: Int = 1) {}
When I call
a()
the first function is called. Why? And is there any way in this case to use second one with default parameter?