Skip to content

Instantly share code, notes, and snippets.

@domgetter
Created January 22, 2014 02:02
Show Gist options
  • Save domgetter/8552282 to your computer and use it in GitHub Desktop.
Save domgetter/8552282 to your computer and use it in GitHub Desktop.
# in irb
> [1,2,3].map { |i| i*2 }
=> [2,4,6] # <- some complicated thing I forgot to capture! doh!
> a = _
=> [2,4,6] # <- hooray! I captured it with _
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment