Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^2: my $1

by grinder (Bishop)
on Apr 23, 2009 at 20:34 UTC ( [id://759656]=note: print w/replies, xml ) Need Help??


in reply to Re: my $1
in thread my $1

perl -e 'my $_ = 1' Can't use global $_ in "my" at -e line 1, near "my $_ "

That's just your copy of perl, which is too old :) Works fine in 5.10.

• another intruder with the mooring in the heart of the Perl

Replies are listed 'Best First'.
Re^3: my $1
by codeacrobat (Chaplain) on Apr 23, 2009 at 20:47 UTC
    Baah, this gives me creeps.
    perl -e '@foo = map {$_=2; foo()} 1..10; sub foo{print}' 2222222222 $ perl -e '@foo = map {my $_=2; foo()} 1..10; sub foo{print}' 12345678910

    print "just another perl5.8 hacker"
      Baah, this gives me creeps.
      Does this give you also the creeps?
      $ perl -e 'for $x (1 .. 9) {$x = 2; foo ()} sub foo {print $x}' 222222222 $ perl -e 'for $x (1 .. 9) {my $x = 2; foo ()} sub foo {print $x}' 123456789
      Or is it the fact that Perl just got a little bit more regular that creeps you out?
Re^3: my $1
by almut (Canon) on Apr 23, 2009 at 20:44 UTC

    ...ah, you're right, I had tried with 5.8.8.

    (/me wonders what that change is supposed to be good for... :)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-03-19 08:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found