document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. some=SomeClass
  2. string=Marshal.dump(some)
  3.  
  4. str=""
  5. string.each_char{|char|
  6.     str+=char.encode!(Encoding::UTF_8).to_s
  7. }
  8. puts str
');