# Pastebin ahCa4196 class Greeter def greet puts "Hello?" end end 10.times.map do Thread.new do Greeter.new.greet end end.each(&:join)