6 lines
106 B
Plaintext
6 lines
106 B
Plaintext
numbers = channel.of(1, 2, 3)
|
|
words = channel.of('hello', 'ciao')
|
|
|
|
numbers
|
|
.combine(words)
|
|
.view() |