Hi Shmuel,

On Fri, 1 Jun 2012 13:07:40 +0900
Shmuel Fomberg <shmuelfomb...@gmail.com> wrote:

> Hi Shlomi.
> 
> On Tue, May 29, 2012 at 6:42 PM, Shlomi Fish <shlo...@shlomifish.org> wrote:
> 
> >
> >  4. In the same file, "use strict;" should be separated from the shabang
> > with an
> > empty line.
> >
> 
> This one I didn't get. Why is that?
> 

Well, it's ultimately a matter of a style, but I find:

[CODE]
#!/usr/bin/perl
use strict;
use warnings;

my ($x, $y, $z) = @ARGV;
[/CODE]

not as easy to read as:

[CODE]
#!/usr/bin/perl

use strict;
use warnings;

my ($x, $y, $z) = @ARGV;
[/CODE]

Regards,

        Shlomi Fish

-- 
-----------------------------------------------------------------
Shlomi Fish       http://www.shlomifish.org/
My Favourite FOSS - http://www.shlomifish.org/open-source/favourite/

Larry Wall’s pure‐Perl code is faster than Assembly.

Please reply to list if it's a mailing list post - http://shlom.in/reply .

Reply via email to