Skip to content

Instantly share code, notes, and snippets.

@lifo
Created November 16, 2008 18:23
Show Gist options
  • Save lifo/25523 to your computer and use it in GitHub Desktop.
Save lifo/25523 to your computer and use it in GitHub Desktop.
module Hello
module World
class << self
def lol
puts "lol"
end
end
end
end
def Hello::World(shit)
puts "shit #{shit}"
end
Hello::World(1)
Hello::World.lol
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment