Help for this page

Select Code to Download


  1. or download this
    # SUBS
    
    ...
    sub do_that{
        $log->log('Log That');
    }
    
  2. or download this
    # SUBS
    
    ...
    sub do_that{
        ($log||=Log->new)->log('Log That');
    }