in reply to Re^5: The purpose of prototypes in perl subroutines
in thread The purpose of prototypes in perl subroutines
The part that you called "prototyping" before is just the subroutine's forward definition. He gives two things there that get around 'use strict', and the one you used wasn't the one with prototypes.
The very first example in perlsub tells you which one you used:
To declare subroutines: sub NAME; # A "forward" declaration. sub NAME(PROTO); # ditto, but with prototypes
|
|---|