RosettaCodeData/Task/Metaprogramming/Ruby/metaprogramming.rb

13 lines
306 B
Ruby
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
class IDVictim
# Create elements of this man, woman, or child's identification.
attr_accessor :name, :birthday, :gender, :hometown
# Allows you to put in a space for anything which is not covered by the
# preexisting elements.
def self.new_element(element)
attr_accessor element
end
end