Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^5: RFC: Accelerated stepping

by hexcoder (Curate)
on Sep 07, 2008 at 19:24 UTC ( [id://709679]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    if (0 < scalar grep { $_ == 9 } (1..10)) {
    
  2. or download this
    if (0 < scalar grep(sub { $_ == 9 }, (1..10))) {
    
  3. or download this
    if (0 < scalar grep(1, (1..10))) {
    
  4. or download this
    print '1. ', (join q{,}, sort               qw(a z b y)), "\n";
    print '2. ', (join q{,}, sort { $a cmp $b } qw(a z b y)), "\n";
    ...
    {
        return $a cmp $b;
    }
    
  5. or download this
    # panics
    print 'map2', (join q{,}, map(::myuc     qw(a z b y))), "\n";
    ...
    {
        return uc($_[0]);
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (9)
As of 2024-04-23 11:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found