Created
September 1, 2013 10:37
-
-
Save acook/6403617 to your computer and use it in GitHub Desktop.
This file contains 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
letter_pairs = [%w{a b}, %w{c d}] | |
letter_pairs.each do |leading, following| | |
puts "leading: #{leading}" | |
puts "following: #{following}" | |
end |
This file contains 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
leading: a | |
following: b | |
leading: c | |
following: d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment