Nikky
louiscad
karelpeeters
infix fun <A, B, C> Pair<A, B>.to(third: C) = Triple(first, second, third)
Allan Wang
run { infix fun <A, B, C> Pair<A, B>.to(third: C) = Triple(first, second, third) println(1 to 2 to 3) } println(1 to 2 to 3)
A modern programming language that makes developers happier.