This prints `first=1 (int)` but I thought kotlin h...
# announcements
m
This prints
first=1 (int)
but I thought kotlin has no implicit conversions.
p
val first = listOfInt[0]
is really
val first: Int = listOfInt[0]
it's being inferred from the return type of
List<Int>.get()