Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
This paste will be private.
adsl-75-3-115-48:rubinius brixen$ shotgun/rubinius irb(main):001:0> [0xff00_ff00].pack("i") => "\000\377\000\377" irb(main):002:0> [0xff00_ff00].pack("I") => "\000\377\000\377" irb(main):003:0> ^D adsl-75-3-115-48:rubinius brixen$ irb >> [0xff00_ff00].pack('i') => "\377\000\377\000" >> [0xff00_ff00].pack('I') => "\377\000\377\000"
From the Design Piracy series on my blog: