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

Re: Implicit assignment to $_

by arnaud99 (Beadle)
on Feb 26, 2013 at 16:08 UTC ( [id://1020717]=note: print w/replies, xml ) Need Help??


in reply to Implicit assignment to $_

Hi, I am unsure about what you are trying to achieve here as there is very little of the code.

$_ is a global variable and quite a few places in perl use $_ as the default.

To know more use 'perldoc perlvar' and you will have a good explanation of where and how $_ can be used.

Below is a small program that uses $_ as the default for both the while loop and the print statement.

I hope this helps.

Arnaud.

use strict; use warnings; use autodie; while(<DATA>) { print; } __DATA__ Test A Test B

Log In?
Username:
Password:

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

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

    No recent polls found