Skip to content

Instantly share code, notes, and snippets.

@ledsun
Created April 27, 2019 06:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ledsun/f84a3bcb7b4e8938acdac0c02b282a30 to your computer and use it in GitHub Desktop.
Save ledsun/f84a3bcb7b4e8938acdac0c02b282a30 to your computer and use it in GitHub Desktop.
t = Thread.new {
p 'hi thread'
sleep 3
p 'bye thread'
}
fork do
p 'hi process'
t.join
p 'bye process'
end
t.join
p 'main'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment