Help for this page

Select Code to Download


  1. or download this
    sub self_or_default {
        return @_ if defined($_[0]) && (!ref($_[0])) &&($_[0] eq 'CGI');
    ...
        }
        return @_;
    }
    
  2. or download this
    $handler ||= \&Err::err;
    # time passes
    do_the_right_thing() || $handler->(title=>'Oops',msg=>'something went 
    +wrong');