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

Re^4: What is code readability?

by BrowserUk (Patriarch)
on Jan 04, 2007 at 05:45 UTC ( [id://592879]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    some_function(
        some_variable, some_other_variable, 
        and_yet_another_variable, and_one_more_for, luck
    );
    
  2. or download this
    if( some_return_value = some_function( 
        some_variable, some_other_variable, 
    ...
    } else {
       // report or otherwise handle the error 
    }
    
  3. or download this
    if( 
        some_return_value = some_function( 
    ...
    else {
       // report or otherwise handle the error 
    }
    
  4. or download this
    if( someRv = fSome( some, oSome, AYAnother, OneMoreFor, luck )) {
        // do some stuff here with someRv 
    ...
    else {
       // report or otherwise handle the error 
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (3)
As of 2024-04-26 03:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found