Once more not sure if this is a bug or if I am using it wrong
val chars = charArrayOf('a', 'b', 'c')
chars.iterator().forEach(::println)
prints “97 98 99”
for (char in chars) println(char)
prints “a b c”
a
anton.bannykh
03/03/2017, 11:13 AM
alexander.egger: That's a bug. Thanks for letting us know. Could you please report it?