Benny Pedersen wrote:
On Thu, 13 Aug 2009 21:36:28 +0200, Mark Martinec
<mark.martinec...@ijs.si>
wrote:

Does perl complain?
  $ perl effectiveTLDs.pm

no errors

so
'bar' => {},
foo' => {},
'bar' => {},

is valid for perl ?

example in line around 2106

but perl accept it, imho this does not mean that there is no errors

I don't see anything like that. As far as I can tell all of the lines after the start of that section start with a single quote character. I searched for lines that did not and found nothing.

The duplicated braces on some lines that you asked about previously are grouping those lines together. Some extra line breaks and indentation would make it more clear.

'bar' => { 'foo' => {},
'bat' => {}},

is equivelent to:

'bar => {
   'foo' => {},
   'bat' => {}
},

--
Bowie

Reply via email to