8 Apr
2013
8 Apr
'13
8:03 p.m.
On Mon, 8 Apr 2013 20:50:11 +0100 David Precious <davidp@preshweb.co.uk> wrote:
So, the following two are equivalent:
my %hash = ( foo => 'Bar' ); my %hash = ( foo, 'Bar' );
Actually, they're not, the second is a syntax error as I didn't add quotes around foo. I of course meant: my %hash = ( foo => 'Bar' ); my %hash = ( 'foo', 'Bar' ); :) -- David Precious ("bigpresh") <davidp@preshweb.co.uk> http://www.preshweb.co.uk/ www.preshweb.co.uk/twitter www.preshweb.co.uk/linkedin www.preshweb.co.uk/facebook www.preshweb.co.uk/cpan www.preshweb.co.uk/github