Can we strict the subroutine in perl to receive number of arguments ?
Normally, we can pass any number of arguments and subroutine will have all the passed arguments in @_ variable, from that we can take how many ever arguments we need.
But we need to tell explicitly to the calling place that only limited / number of arguments that we need to pass for the subroutine call.
Is there any way can help it ?