in reply to Re: •Re: Re: •Re: On goto
in thread On goto
That may be golfing it too far for your tastes, but the point is still valid. Creating the data structure with the data you want already in it is generally clearer than creating it and then building it up with fixed assignments.sub new { bless { foo => undef, bar => undef, }, shift; }
|
|---|