Skip to content

Instantly share code, notes, and snippets.

@nitinstp23
Created December 10, 2013 20:06
Show Gist options
  • Save nitinstp23/7897292 to your computer and use it in GitHub Desktop.
Save nitinstp23/7897292 to your computer and use it in GitHub Desktop.
class Person
def initialize(name)
@name = name
end
def greet(other_name)
"Hi #{other_name}, my name is #{name}"
end
private
attr_reader :name
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment