Showing posts with label perl. Show all posts
Showing posts with label perl. Show all posts

Thursday, January 20, 2011

perl tips

all Perl programs should contain the following three lines:
#!/usr/bin/perl -Tw         # force taint checks, and print warnings
use strict;                 # install all three strictures
$|++;                       # force auto flush of output buffer
http://www.cs.mcgill.ca/~abatko/computers/programming/perl/howto/