Skip to content

Instantly share code, notes, and snippets.

@rickhull
Created July 20, 2010 21:29
Show Gist options
  • Save rickhull/483628 to your computer and use it in GitHub Desktop.
Save rickhull/483628 to your computer and use it in GitHub Desktop.
module Foo
def self.bar(str)
str.reverse
end
def baz(str)
# how can I call bar, above, aside from Foo.bar(str)?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment