Skip to content

Instantly share code, notes, and snippets.

@ismasan
Created October 6, 2022 11:35
Show Gist options
  • Save ismasan/f5a82cccd80dffd789cba66f3b56b0e3 to your computer and use it in GitHub Desktop.
Save ismasan/f5a82cccd80dffd789cba66f3b56b0e3 to your computer and use it in GitHub Desktop.
puts "START"
chan = Channel(Nil).new
spawn do
sleep 6
chan.send nil
end
select
when chan.receive
puts "CHAN"
when timeout(5.seconds)
puts "TIMEOUT"
end
sleep 10
puts "BYE"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment