Files
dockerfiles/tests/ruby/testcase/stringinterpolation.rb
2019-08-04 22:54:34 -07:00

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