"b" to 2, "c" to 3)
for ((k, v) in map) {
println("$k -> $v")
}
map2["a"] = "my value" // direct map access with array style // range
for (i in 1..100) { //... } #androiddev #kotlin #morningtech @ekito // immutable list
val list = listOf("a", "b", "c","aa")
list.filter { it.startsWith("a") } * collections operators : map, filter, take, flatMap, forEach, firstOrNull, last …