Skip to content

Instantly share code, notes, and snippets.

@jicksta
Created August 24, 2008 01:29
Show Gist options
  • Save jicksta/6956 to your computer and use it in GitHub Desktop.
Save jicksta/6956 to your computer and use it in GitHub Desktop.
class Foo
def initialize
puts "Initializing!"
@foo = 123
end
end
f = Marshal.load "\004\bo:\bFoo\006:\t@foo0"
p f
f.send :initialize
p f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment