Skip to content

Instantly share code, notes, and snippets.

@gshutler
Created November 25, 2012 15:58
Show Gist options
  • Save gshutler/4144152 to your computer and use it in GitHub Desktop.
Save gshutler/4144152 to your computer and use it in GitHub Desktop.
User = Struct.new(:name, :male?) do
def sex
self[:male?] ? :male : :female
end
end
garry = User.new("Garry", true)
puts garry.name # => Garry
puts garry.sex # => male
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment