Join Slack
Powered by
Let's say I have a `val f: (Any) -> Unit = ...`...
# announcements
k
karelpeeters
03/04/2018, 3:12 PM
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?
Open in Slack
Previous
Next