Skip to content

Instantly share code, notes, and snippets.

@dnch
Created November 22, 2012 05:27
Show Gist options
  • Save dnch/4129537 to your computer and use it in GitHub Desktop.
Save dnch/4129537 to your computer and use it in GitHub Desktop.
arr = [:a, :b, :c]
obj = :d
[*arr] # => [:a, :b, :c]
[*obj] # => [:d]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment