Guest User

Untitled

a guest
Feb 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class Foo
  2. def initialize
  3. puts "Initializing!"
  4. @foo = 123
  5. end
  6. end
  7.  
  8. f = Marshal.load "\004\bo:\bFoo\006:\t@foo0"
  9. p f
  10. f.send :initialize
  11. p f
Add Comment
Please, Sign In to add comment