what is the reason that kotlin does not allow `/` ...
# announcements
r
what is the reason that kotlin does not allow
/
in a function name? e.g. `fun `/`` is not allowed but `fun `+`` is
3
m
the funny fact is that you can’t use certain ASCII characters but you can use every other Unicode char (or so it seems):
Copy code
infix fun <A, B> A.`⟹`(that: B) = this to that

fun `💩`() = TODO("don't do this")