in kotlin i can do something like `fun log(x: Int)...
# getting-started
j
in kotlin i can do something like
fun log(x: Int) { ... }
fun log(x: String) { ... }
fun log(x: Boolean) { ... }
to have log take 3 different types of values
s
You can use default variable options and switch on them