in reply to Coding superstitions
That's pretty much exactly how all my scripts start off. Even when I'm useing warnings, I put the -w switch in, and use strict somes directly underneath to match my Camel teeshirt :)#!/usr/bin/perl -w use strict; # useless.pl # script to demonstrate my perl style # amoe 2002 use SomeModule;
|
|---|