Skip to content

Instantly share code, notes, and snippets.

@aaronbartell
Last active August 29, 2015 14:07
Show Gist options
  • Save aaronbartell/e4ef4da1be564dae794f to your computer and use it in GitHub Desktop.
Save aaronbartell/e4ef4da1be564dae794f to your computer and use it in GitHub Desktop.
module Talk
def self.hi name
puts "n1:#{name.object_id}"
name = "#{name}, welcome to the jungle."
puts "n2:#{name.object_id}"
end
end
require_relative 'talk'
x = "Aaron"
puts "x1:#{x.object_id}"
Talk.hi x
puts "x2:#{x.object_id}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment