Skip to content

Instantly share code, notes, and snippets.

@Poincare
Created July 24, 2012 10:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Poincare/3169390 to your computer and use it in GitHub Desktop.
Save Poincare/3169390 to your computer and use it in GitHub Desktop.
require 'celluloid'
class HelloSpaceActor
include Celluloid
def say_msg
print "Hello, "
Celluloid::Actor[:world].say_msg
end
end
class WorldActor
include Celluloid
def say_msg
print "world!"
Celluloid::Actor[:newline].say_msg
end
end
class NewlineActor
include Celluloid
def say_msg
print "\n"
end
end
Celluloid::Actor[:world] = WorldActor.new
Celluloid::Actor[:newline] = NewlineActor.new
HelloSpaceActor.new.say_msg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment