hm, presumably, the `==` operator checks that the ...
# random
k
hm, presumably, the
==
operator checks that the type of one side could be assignable to the other. You can write
"2".equals(3)
in Kotlin and it'll compile (but also warn you to quickfix it to
"2" == 3
, which will then give you a compiler error 😆)