Created
August 29, 2021 08:36
-
-
Save ryanckulp/da7dce22d2235a60b4ae9a17a2afd94d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Multi-line inner loop blocks | |
collection.each do |parameter_name| | |
# logic_here | |
end | |
# Single-line inner loop blocks | |
collection.each { |parameter_name| logic_here } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment