Skip to content

Instantly share code, notes, and snippets.

@djwhitt
Created February 12, 2010 02:42
Show Gist options
  • Save djwhitt/302243 to your computer and use it in GitHub Desktop.
Save djwhitt/302243 to your computer and use it in GitHub Desktop.
[1, 2, 3].each do |x|
x # =>
end
# C-c C-f ...
[1, 2, 3].each do |x|
x # => 1, 2, 3
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment