5 lines
124 B
Plaintext
5 lines
124 B
Plaintext
source = channel.of( 'alpha', 'beta', 'delta' )
|
|
|
|
source.subscribe { str ->
|
|
println "Got: ${str}; len: ${str.length()}"
|
|
} |