Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Comma's and blocks

by erroneousBollock (Curate)
on Oct 04, 2007 at 06:05 UTC ( [id://642572]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      map {/dothis/} @variable;
      grep {/more stuff/} @more;
    
  2. or download this
      map(sub {/dothis/}, @variable);
      grep(sub {/more stuff/}, @more);
    
  3. or download this
      print A "hello";
      print $somevar, "can be seperated like this";
    
  4. or download this
      print STDOUT $somevar, "can be seperated like this";
    

Log In?
Username:
Password:

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

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

    No recent polls found