in reply to Re: Clustering with Perl
in thread Clustering with Perl
"-s" adds some command-line parsing you're not using, and "use 5.010" breaks backward compatibility and (maybe?) enables some features you're not using. IIRC, the standard ritual chant around these parts is#! perl -s use 5.010; use strict;
The particularly devout may use#!/usr/bin/env perl use strict; use warnings; use diagnostics;
The purpose of the repetition is to get people to write things without understanding them, so making up your own chant is confusing and counterproductive.#!/usr/bin/env perl use Modern::Perl; use Moose; use diagnostics;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Clustering with Perl
by BrowserUk (Patriarch) on Jun 24, 2009 at 17:28 UTC |