Skip to content

Instantly share code, notes, and snippets.

@sandboxws
Created September 5, 2011 01:06
Show Gist options
  • Save sandboxws/1193823 to your computer and use it in GitHub Desktop.
Save sandboxws/1193823 to your computer and use it in GitHub Desktop.
Ruby Reflection Part 1 Snippet 1
class Person
attr :first_name, :last_name
def full_name
"#{@first_name} #{@last_name}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment