in reply to Re^4: The purpose of prototypes in perl subroutines
in thread The purpose of prototypes in perl subroutines
use strict 'subs'; print count; # an error with use strict 'subs' sub count; # prototyping count() is sufficient print count; # Not an error because Perl now knows about count()
J. J. Horner CISSP,CCNA,CHSS,CHP,blah,blah,blah
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: The purpose of prototypes in perl subroutines
by brian_d_foy (Abbot) on Apr 13, 2005 at 18:12 UTC |