Skip to content

Instantly share code, notes, and snippets.

@maxehmookau
Created February 19, 2013 09:44
Show Gist options
  • Save maxehmookau/4984454 to your computer and use it in GitHub Desktop.
Save maxehmookau/4984454 to your computer and use it in GitHub Desktop.
@ symbol in Ruby
class Person
def initialize(name)
@name = name
end
def name
puts @name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment