Skip to content

Instantly share code, notes, and snippets.

@loz
Created April 7, 2011 13:53
Show Gist options
  • Save loz/907811 to your computer and use it in GitHub Desktop.
Save loz/907811 to your computer and use it in GitHub Desktop.
Scottish Ruby Conference - Cheaty 'new' method
class Object
def new(klass, *args)
klass.new(*args)
end
end
x = new String
p x
p new Array
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment