reactormonk
kevin.cianfarini
for (one in channel1) { for (two in channel2) { doSomething() } }
one
two
for (one in channel1) { val two = channel2.recieve() doSomething(one, two) }
A modern programming language that makes developers happier.