Skip to content

Instantly share code, notes, and snippets.

@tmornini
Created October 25, 2013 21:19
Show Gist options
  • Save tmornini/7161995 to your computer and use it in GitHub Desktop.
Save tmornini/7161995 to your computer and use it in GitHub Desktop.
WTF?
irb(main):011:0> [1][0..-1]
=> [1] # makes sense
irb(main):012:0> [1][1..-1]
=> [] # WTF?
irb(main):013:0> [1][2..-1]
=> nil # makes sense
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment