Skip to content

Instantly share code, notes, and snippets.

@denysonique
Created March 4, 2011 12:27
Show Gist options
  • Save denysonique/854543 to your computer and use it in GitHub Desktop.
Save denysonique/854543 to your computer and use it in GitHub Desktop.
class Greeter
def self.say_hi name
puts "Hi #{name}."
end
end
=begin
Output:
irb(main):007:0> Greeter.say_hi 'Ruby'
Hi Ruby.
=end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment