Help for this page

Select Code to Download


  1. or download this
    my $handles = {
      400 => 1,  # BAD_INPUT
    ...
          exit $handles->{$_};
        }
    }
    
  2. or download this
    my $handles = {
      200 => sub { print_response $response_content;  0}, # OK!
    ...
          exit $handles->{$_}->();
        }
    }