It doesn't? `x?.toString()` can return `null`, `x....
# announcements
k
It doesn't?
x?.toString()
can return
null
,
x.toString where x:Any?
will return
"null"
instead.
Yes, that's my second example.
Hmm, I guess I see what he means. I meant the
?.
at the callsite simple smile
Agreed!