Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: what would you like to see in perl5.12?

by Joost (Canon)
on Aug 21, 2007 at 23:52 UTC ( [id://634216]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $obj->do { stuff(@_) }
    
  2. or download this
    $object->method(sub { 
      my ($arg) = @_;
      # stuff
    });
    
  3. or download this
    @result = map { insert(@your_code_here) } @input;
    
  4. or download this
    sub one_hundred_and_one_times(&) {
      my $block = shift;
      $block->() for (0 .. 100);
    }
    @result = one_hundred_and_one_times { more($stuff) };
    
  5. or download this
    $object->method { # code block };
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-03-28 12:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found