3 lines
101 B
Plaintext
3 lines
101 B
Plaintext
channel.of(1, 2, 3)
|
|
.map { v -> [v, v*v] }
|
|
.view { num, sqr -> "The square of $num is $sqr" } |