$ jruby -w -e 'r = Ractor.new { puts "hello"; p Ractor.yield "foo"; "bar" }; p r.take; r.send("baz"); p r.take' hello "foo" "baz" "bar"