From: Jan Svitok Date: 2006-08-11T21:54:59+09:00 Subject: Re: Need to understand code On 8/11/06, junkone1@gmail.com wrote: > fields = %w(ssn name position) > What does this term mean %w....... > fields = %w(ssn name position) is the same as ['ssn', 'name', 'position'], i.e. %w is a syntactic shortcut. http://www.rubycentral.com/book/language.html#UB