mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-04-28 19:13:48 +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 |