In the following code, I expect 1000 lines of 'a' to be printed, but it does not output anything. Without Thread.new{ and }, it works. What am I doing wrong?

Thread.new{1000.times{puts 'a'}}
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You create a thread that will print a 1,000 times, but then what do you do? If your program terminates before that thread gets a chance to run, nothing will be printed.

link|improve this answer
feedback

try

Thread.new{1000.times{puts 'a'}}.join
link|improve this answer
Thanks. Your answer adds additional information on top of David's, and is helpful. I accepted David's because it was earlier. – sawa Feb 2 at 20:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.