mirror of
https://github.com/lloeki/normandy.git
synced 2025-12-06 10:04:39 +01:00
10 lines
159 B
Ruby
10 lines
159 B
Ruby
# https://gobyexample.com/range-over-channels
|
|
|
|
require 'channel'
|
|
|
|
queue = Channel.new(2)
|
|
queue << 'one'
|
|
queue << 'two'
|
|
close(queue)
|
|
|
|
queue.each { |e| puts e }
|