SimpleExample = Struct.new(:first,:last,:second,:none)
exampleinaction = SimpleExample.new("a","b","c","d")
exampleinaction.first = "can't"
exampleinaction.last = "autocomplete"
exampleinaction.second= "these"
exampleinaction.none = "attribute assignments"