Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

$bad_names eq $bad_design

by Ovid (Cardinal)
on Dec 20, 2002 at 19:48 UTC ( [id://221498]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        if ( tokens_are_the_same($token, $CONFIG{stack}[0]) ) {
    
  2. or download this
        # if we have an expense account and the amount is too large
        if (4223 == $acct and $amount >= 100) {
    
  3. or download this
        if ( excessive_expense_account($acct,$amount) ) {
    
  4. or download this
        while ( my $token = $parser->get_token ) {
            if ( tokens_are_the_same($token, $CONFIG{stack}[0]) ) {
    ...
                $html .= $token->as_is;
            }
        }
    
  5. or download this
        while ( my $token = $parser->get_token ) {
            if( stack_matched($parser) ) {
    ...
                $html .= $token->as_is;
            }
        }
    

Log In?
Username:
Password:

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

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

    No recent polls found