Skip to content

Instantly share code, notes, and snippets.

@adammcarth
Last active August 29, 2015 14:00
Show Gist options
  • Save adammcarth/11310086 to your computer and use it in GitHub Desktop.
Save adammcarth/11310086 to your computer and use it in GitHub Desktop.
Ruby.
names = ["beautiful", "stunning", "elegant", "object orientated", "fun", "engaging", "easy", "pragmatic"]
names.each do |name|
puts "Ruby is #{name}"
end
#=> Ruby is beautiful
#=> Ruby is stunning
#=> Ruby is elegant
#=> Ruby is object orientated
#=> Ruby is fun
#=> Ruby is engaging
#=> Ruby is easy
#=> Ruby is pragmatic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment