Created
April 5, 2010 11:29
-
-
Save deepak/356257 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# usage: ruby thread_simple.rb | |
thread1 = Thread.new { | |
while(true) do | |
print '*' | |
sleep 0.1 | |
end | |
} | |
# if we set sleep the print never gets executed even after waiting for | |
# 5 seconds. WTF!!! | |
thread1.join |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment