Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: The Scalar Range Operator

by hossman (Prior)
on Jul 27, 2004 at 01:53 UTC ( [id://377632]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    while (<DATA>)
    {
      print if 2 .. 3;
    }
    
  2. or download this
    while (<DATA>)
    {
      print if 2 .. 4;
    }
    
  3. or download this
    while (<DATA>)
    {
      print if 1 .. /end/;
    }
    
  4. or download this
    while (<DATA>)
    {
      print if 2 .. /end/;
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (1)
As of 2024-04-19 18:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found