Hacker News new | ask | show | jobs
by rco8786 1095 days ago
That's still a no-op because `threads` is empty

  threads = 3.times.map do 
    Thread.new do 
      service.call
    end 
  end
  threads.each(&:join)