Skip to content

Instantly share code, notes, and snippets.

@stonean
Created May 6, 2011 15:51
Show Gist options
  • Select an option

  • Save stonean/959212 to your computer and use it in GitHub Desktop.

Select an option

Save stonean/959212 to your computer and use it in GitHub Desktop.
def meth(*args)
puts args.inspect
end
meth(1,2,3,4)
[1, 2, 3, 4]
meth([1,2,3,4])
[[1, 2, 3, 4]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment