Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Think for yourself.

by Abigail-II (Bishop)
on Oct 06, 2003 at 08:51 UTC ( [id://296889]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    map do_something($_), @some_list;
    do_something($_) for @some_list;
    
  2. or download this
    () = do_something ($_) for @some_list;
    
  3. or download this
    map {BLOCK} @some_list;
    
  4. or download this
    () = do {BLOCK} for @some_list;
    
  5. or download this
     
    do {BLOCK} for @some_list;
    
  6. or download this
    for (@some_list) {
        () = do {BLOCK};
    }
    
  7. or download this
    for (@some_list) {
        BLOCK;
    }
    
  8. or download this
     
    user_defined_function {BLOCK} LIST;
    

Log In?
Username:
Password:

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

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

    No recent polls found