Created
October 14, 2019 12:56
-
-
Save krokrob/7427eb8f579f0d83ec77c3f075191f6c 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
def display_list(horses) | |
horses.each_with_index do |horse, index| | |
puts "#{index + 1} - #{horse}" | |
end | |
end | |
# display_list([ | |
# 'Tempete du Desert', | |
# 'Jolly Jumper', | |
# 'Hermes', | |
# 'Hercules', | |
# 'Tornade' | |
# ]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment