mirror of
https://github.com/lloeki/normandy.git
synced 2025-12-06 01:54:40 +01:00
10 lines
138 B
Ruby
10 lines
138 B
Ruby
# https://gobyexample.com/channels
|
|
|
|
require 'channel'
|
|
|
|
messages = Channel.new
|
|
|
|
go -> { messages << 'ping' }
|
|
|
|
msg = messages.recv
|
|
puts msg
|