Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
This paste will be private.
a = [ { :foo => :bar }, { :foo => :bar } ] p a #=> [{:foo=>:bar}, {:foo=>:bar}] p a[0] == a[1] #=> true p a.uniq #=> [{:foo=>:bar}, {:foo=>:bar}]
From the Design Piracy series on my blog: