#!/usr/bin/perl -w use strict; check_for_in( "derby" ); sub check_for_in( $ ) { my( $arg ) = shift; print $arg, "\n"; }
to
#!/usr/bin/perl -w use strict; sub check_for_in( $ ) { my( $arg ) = shift; print $arg, "\n"; } check_for_in( "derby" );
-derby
In reply to Re: too early to check prototype
by derby
in thread too early to check prototype
by nlafferty
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |