Skip to content

Instantly share code, notes, and snippets.

@launchkit-codes
Created August 24, 2018 13:57
Show Gist options
  • Select an option

  • Save launchkit-codes/93121e05862f77c6dfe2435d9491bc9b to your computer and use it in GitHub Desktop.

Select an option

Save launchkit-codes/93121e05862f77c6dfe2435d9491bc9b to your computer and use it in GitHub Desktop.
def optional_block
yield if block_given?
end
optional_block # => nil
optional_block { puts 'optional block' } # => optional block
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment