Skip to content

Instantly share code, notes, and snippets.

@bachue
Created October 19, 2013 14:59
Show Gist options
  • Save bachue/7057035 to your computer and use it in GitHub Desktop.
Save bachue/7057035 to your computer and use it in GitHub Desktop.
def f
puts 'f'
{}
end
def g
puts 'g'
1
end
def h
puts 'h'
2
end
f[:x] = g
# => f
# g
f[:x], f[:y] = g, h
# => g
# h
# f
# f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment