ostruct.rb - Python Style Object
just assign to create field
s = OpenStruct.new s.foo = 25 p s.foo s.bar = 2 p s.bar p s
[Validate]