Skip to content

Instantly share code, notes, and snippets.

@nevir
Created July 5, 2011 20:26
Show Gist options
  • Save nevir/1065836 to your computer and use it in GitHub Desktop.
Save nevir/1065836 to your computer and use it in GitHub Desktop.
ruby-1.9.2-p180 :001 > class Foo
ruby-1.9.2-p180 :002?> def  (*args)
ruby-1.9.2-p180 :003?> args
ruby-1.9.2-p180 :004?> end
ruby-1.9.2-p180 :005?> end
=> nil
ruby-1.9.2-p180 :006 > Foo.new. 
=> []
ruby-1.9.2-p180 :007 > Foo.new.  'stuff', other: 'stuff'
=> ["stuff", {:other=>"stuff"}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment