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
Creating A Shorthand Array
%w[] defines an array of varables:
a = 'ant' b = 'bat' c = 'cat' d = 'dog' list = %w[a b c d] puts list.inspect





