Hi,

Today i looked at ruby for the first time.

I can't quite figure out what this code is. Could someone give me an
explanation.

FILES = {
  'some_file.html' => [
    'Some text',
    'Some more text'
  ],
  'some_other_file.html' => [
    'other text',
    'And even more text'
  ],
  'yet_another_file.html' => [
    ['Last text', 2]
  ]
}

Thanks a lot.
-- 
Posted via http://www.ruby-forum.com/.