dotboris/eldritch

View on GitHub
examples/together_simple.rb

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/env ruby
require 'eldritch'

together do
  (1..10).each do |i|
    async { puts i }
  end
end

puts 'all done'