Skip to content

Instantly share code, notes, and snippets.

@jballanc
Created August 26, 2010 20:34
Show Gist options
  • Save jballanc/552197 to your computer and use it in GitHub Desktop.
Save jballanc/552197 to your computer and use it in GitHub Desktop.
require 'c'
class Arriving
def say
puts "Hello, #{C.new.place}"
end
end
require 'c'
class Leaving
def say
puts "Goodbye, #{C.new.place}"
end
end
class C
def place
"world"
end
end
require 'a'
require 'b'
Arriving.new.say
Leaving.new.say
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment