Let's say I have a `val f: (Any) -> Unit = ...`...
# announcements
k
Let's say I have a
val f: (Any) -> Unit = ...
, you'd be able to do
f("hey"); f(5); f(Object())
, since
f
takes a parameter of type
Any
, right?