Help for this page

Select Code to Download


  1. or download this
    1357==>b if ($self->{TT}->call_category($key) != undef)
    1358        {
    1359            # Do something, never reached
    1360        }
    
  2. or download this
    use Data::Dumper;
    print Dumper $key
    $VAR1 = 'AN-AM-BA';
    
  3. or download this
    print Dumper $self->{TT}->call_category
    $VAR1 = {
    ...
              # Lots more, but not the value of $key.
              '*-VY-*' => 132
            };
    
  4. or download this
    print Dumper $self->{TT}->call_category($key)
    $VAR1 = undef;
    
  5. or download this
    n
    Not a CODE reference at ...