how would I create a `fun pretty(a: Any): String` ...
# getting-started
n
how would I create a
fun pretty(a: Any): String
that returns
a.joinToString
if
a
has such a method, or
a.toString()
otherwise?