in reply to Re: Function overloading in perl
in thread Function overloading in perl

In perl, you have to do things the perl way, which means you can only have sub OVERLOADED
sub OVERLOADED { ## do different things depending on arguments }
you can't blindly copy the c/c++ concept of function signatures/overloading and expect it to work