Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
              };
    
    print Dumper($var);
    
  2. or download this
    $VAR1 = {
              'first'  => undef,
              'second' => undef,
            };
    
  3. or download this
    $VAR1 = {
              'first' => 'second'
            };
    
  4. or download this
        return unless defined($name) && $self->{$name};
    
  5. or download this
        return undef unless defined($name) && $self->{$name};