Skip to content

Instantly share code, notes, and snippets.

@hectorperez
Created August 1, 2014 09:25
Show Gist options
  • Save hectorperez/af9de7e156c68f61f221 to your computer and use it in GitHub Desktop.
Save hectorperez/af9de7e156c68f61f221 to your computer and use it in GitHub Desktop.
Create ruby array
%i(a b)
=> [:a, :b]
%w(a b)
=> ["a", "b"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment