Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Send and receive

  • Channel
  • send
  • receive
  • spawn
puts "before"
ch = Channel(Int32).new

puts "before spawn"
spawn do
  puts "in spawn before send"
  ch.send 42
  puts "in spawn after send"
end

puts "before receive"
res = ch.receive
puts "received #{res}"