Skip to content

Instantly share code, notes, and snippets.

@ErinCall
Created January 18, 2013 21:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ErinCall/4568976 to your computer and use it in GitHub Desktop.
Save ErinCall/4568976 to your computer and use it in GitHub Desktop.
ha ha ha what the heck
>> a, a, b = [1, 2, 3]
=> [1, 2, 3]
>> a
=> 2
>> _, _, b = [1, 2, 3]
=> [1, 2, 3]
>> _
=> [1, 2, 3]
>> a
=> 2
>> _
=> 2
@deleteme
Copy link

wat

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment