It seems that I can use IO.select inside a ractor, but not call IO.wait_writable, which seems odd.
require"io/wait"ractors=[]1.timesdoractors<<Ractor.newdo$stdout.wait_writable(2)# this fails# but this works# IO.select(nil, [$stdout], nil, 2)$stdout.puts"wow"endendractors.map(&:take)