mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-04-29 11:33:36 +00:00
7 lines
154 B
Ruby
7 lines
154 B
Ruby
favorite_things = ["Ruby", "espresso", "exercise"]
|
|
|
|
puts "A few of my favorite things:"
|
|
|
|
favorite_things.each do |thing|
|
|
puts "I love " "#{thing}!"
|
|
end |