Skip to content

Instantly share code, notes, and snippets.

@nevir
Created July 4, 2011 18:30
Show Gist options
  • Save nevir/1063749 to your computer and use it in GitHub Desktop.
Save nevir/1063749 to your computer and use it in GitHub Desktop.
ruby-1.9.2-p180 :001 > Array(1)
=> [1]
ruby-1.9.2-p180 :002 > Array([1,2,3])
=> [1, 2, 3]
ruby-1.9.2-p180 :003 > Array.new
=> []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment