# Create data objects without specifying the attributes# Create attributes on the fly:require 'ostruct'person = OpenStruct.newperson.name = "Tom"person.age = 25