Help for this page

Select Code to Download


  1. or download this
    use constant CODE=>0;
    use constant SUBCODE=>1;
    ...
    
  2. or download this
    use constant {
        CODE=>0, SUBCODE=>1, ....
    };
    
  3. or download this
    if( $response[CODE] == 20 and 
         $response[SUBCODE] == 55 ) {
         # Do something appropriate
    }
    
  4. or download this
    if( "@response[CODE, SUBCODE]" eq '20 55' ) {
        # do stuff
    }