Are threads supposed to work? This code triggers a segmentation fault: ``` Ruby t1 = UV::Thread.new do puts "Thread 1" end t2 = UV::Thread.new do puts "Thread 2" end t1.join t2.join ```