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

Re: What is code readability?

by BrowserUk (Patriarch)
on Jan 03, 2007 at 08:10 UTC ( [id://592715]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    PP(pp_padhv) {
        dSP; dTARGET;
    ...
        }
        RETURN;
    }
    
  2. or download this
    PP(pp_padhv)
    {
    ...
        }
        RETURN;
    }
    
  3. or download this
    my @sorted = sort{ $a <=> $b } @names;
    
  4. or download this
    my @list_of_numerically_sorted_names = sort {
        $first_element_to_be_compared
        <=>
        $second_element to be compared
    } @list_of_unsorted_names;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-16 06:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found