Tagged Questions

7
votes
7answers
200 views
+100

What should I put in my starter template for my Perl programs?

I'm basing the majority on my Perl scripts on the following template/skeleton: #!/usr/bin/perl -w use strict; use utf8; $| = 1; binmode(STDOUT, ":utf8"); # my code goes here. The things achieved …