Hacker News new | ask | show | jobs
by jsnelgro 1250 days ago
Kotlin uses "it" as the name of the implicit arg in lambdas. Makes things very readable imo:

``` listOf(1, 3, 5).map { it * 100 } ```