Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Practical example of "Is Perl code maintainable"

by eyepopslikeamosquito (Archbishop)
on Aug 13, 2007 at 07:44 UTC ( [id://632152]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub file_mode {
      my ($file) = @_;
    ...
              $dummy, $dummy, $dummy, $dummy) = stat($file);
      return $mode;
    }
    
  2. or download this
    sub file_mode {
      -f shift or return -1;
      return (stat(_))[2];
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://632152]
Approved by Corion
Front-paged by Corion
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (6)
As of 2024-04-19 13:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found