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/

No comments:

Post a Comment