Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    
    ...
            b => 'asdf'
        }
    );
    
  2. or download this
    $VAR1 = {
        'asdf' => undef,
        'a' => 'b'
    };
    
  3. or download this
    use Data::Dumper;
    
    ...
    
    my $b = "a" =~ m/b/;
    print Dumper( $b );           # outputs an empty string ('')