Array with %w
words = %w[this is a test] # Same as: ['this', 'is', 'a', 'test'] open = %w| ( [ { < | # Same as: ['(', '[', '{', '<'] white = %W(\s \t \r \n) # Same as: ["\s", "\t", "\r", "\n"]