Skip to content

Instantly share code, notes, and snippets.

View felipe-araujo's full-sized avatar

Felipe Araújo felipe-araujo

  • Fortaleza, Ceará, Brazil
  • 01:45 (UTC -03:00)
View GitHub Profile
@leandronsp
leandronsp / cractor.rb
Created January 17, 2022 01:14
A dead simple Actor in Ruby, simulating the same API for Ractors
class Cractor
def initialize(*args, &block)
@inbox = Queue.new
@outbox = Queue.new
Thread.new do
result = yield(self, *args)
self.yield(result)
end