Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: my @ARGV

by ysth (Canon)
on Dec 09, 2008 at 13:31 UTC ( [id://729158]=note: print w/replies, xml ) Need Help??


in reply to Re: my @ARGV
in thread Little annoying mistakes ... of others

my $_ is new with 5.10.0, and switches anything in the scope that by default is using the global $_ to using the lexical $_ instead.

my @ARGV has no such magic. readline or eof will continue to default to using the global @ARGV, even though there's a lexical @ARGV in scope. This is the reason for a warning.

Replies are listed 'Best First'.
Re^3: my @ARGV
by szabgab (Priest) on Dec 10, 2008 at 06:45 UTC
    My point is that I am looking for cases of Perl code that compile under use strict. Don't generate warnings under use warnings but don't do the expected by a beginner.

    After being told to use strict and declare everything with my, a beginner will go out and do just that. Declare everything with my:

    my (@ARGV, $a, $b, $_, $AUTOLOAD);
    you could give them a list of special cases but IMHO it is a waste of brain cycles - at that point in the learning curve. Probably they will not learn them and the whole thing will just confuse them.

    My plan is to provide a tool that can find such cases and warn about them.

      After being told to use strict and declare everything with my, a beginner will go out and do just that. Declare everything with my
      Rather than telling them to 'declare everything with my', it would be more correct to simply say 'declare all of your variables'.
      Then provide an example, such as:

      It reminds me of pre-school; my $lollypop is all MINE! Nobody else can decrement it.
      I'm sharing my blocks, so they are really our @blocks; now. Everybody in the room can push and shift them.
      And my friend Perl is sharing his @ARGV with me. Look; he put a '-help' behind the first door, how cute.

      The point being that variables, like toys, only need to be created once. The people you are sharing with don't need to buy/declare it, because you did that already.
      Ownership and sharing are things we learned in kindergarten (hopefully!). Once the connection is made, it should be pretty natural.
        there already is some Perl::Critic integration but you are also welcome to give a hand...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://729158]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (5)
As of 2024-04-16 19:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found