Skip to content

Instantly share code, notes, and snippets.

@aleandros
Created October 11, 2016 16:39
Show Gist options
  • Select an option

  • Save aleandros/777b1a0d07e19bf25dc7ce2b7dcccad7 to your computer and use it in GitHub Desktop.

Select an option

Save aleandros/777b1a0d07e19bf25dc7ce2b7dcccad7 to your computer and use it in GitHub Desktop.
def not_much(&action) # Convert method's block into a proc
action.call
end
action = proc { puts 'hi' }
not_much &action # Convert proc into method's block
#=> It prints
# hi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment