<div dir="ltr">Tomorrow is the last Fleet Perl Mongers of the year, and just before LPW, hope to see you all at both, that includes you this time Tom ;-)<div><br></div><div>Here's a fun topic for you everyone, did you know that autovivification requires a variable?</div><div><br></div><div><div>[jraspass@work ~]$ perl -e '$_=sub{}->(); $_->{key};' -e 'sub{}->()->{key}'</div><div>Can't use an undefined value as a HASH reference at -e line 2.</div></div><div><br></div><div>This came from a real bug from moving</div><div><br></div><div>my $result   = func();</div><div>my $result2 = $result->{key};</div><div><br></div><div>to</div><div><br></div><div>my $result2 = func()->{key};</div></div>