Skip to content

Instantly share code, notes, and snippets.

@madelinecr
Last active December 15, 2015 15:09
Show Gist options
  • Save madelinecr/5279663 to your computer and use it in GitHub Desktop.
Save madelinecr/5279663 to your computer and use it in GitHub Desktop.
module Utilities
def method
puts "Namespaced hello world"
end
end
Utilities::method()
def method
puts "Hello world"
end
method()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment