[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> wrote:
 
: The idiom I use every single day:
: 
: #!/usr/bin/perl
: 
: use strict;
: use warnings;
: use diagnostics;

    My idiom, which is used a lot for testing code on
various beginner lists, is this. I never did care for the
verbose output of diagnostics.pm.

#!/usr/bin/perl

use strict;
use warnings;

#use Data::Dumper 'Dumper';
#use CGI;

__END__


     I also have a few editor macros on hand like this one
for file opening.

CTRL+ALT+F:

my $file = '';
open FH, $file or die qq(Cannot open "$file": $!);

close FH;


HTH,

Charles K. Clarkson
-- 
Mobile Homes Specialist
254 968-8328


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to