in reply to Re^2: Trouble getting started with Perl OO
in thread Trouble getting started with Perl OO

Well, it's doing more than key value pairs, it also allow traditional parameter passing methods.

mysub( $v1, $v2, $v3, $v4 ); mysyb( -v1 => $v1, -v3 => $v3 );

I like to have the freedom of using either calling convension. Just a personal preference.