Is there any way to get overloading with function signatures in pure #perl?
@alpha6 What do you mean? Maybe try asking at PerlMonks giving more details.

@choroba I mean the classic overloading like Java/C++
sub foo($bar, $baz) { say "I'm foo with two params!"}
sub foo($bar, $baz, $third) { say "I'm foo with three params!"}

PerlMonks said that it's not possible. But the thread that I found was from 2009...

@alpha6 Why do you need it?
@choroba
It makes the code more elegant and a little bit simple.