DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Things
things = [] #[1,2,3]
if things.each do |thing|
puts thing
end.empty? then
puts "no things!"
end





