Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    my ($x,$y);
    ...
    __END__
    #Outputs
    $VAR1=\'Foo';
    
  2. or download this
    use Data::Dump;
    my ($x,$y);
    $x=\$y;
    $y=\$x;
    print dump([$x,$y]);
    
  3. or download this
    #Dumper Output with Purity on
    $VAR1 = [
    ...
        ${$RT_ARRAY->[1]} = $RT_ARRAY->[0];
        $RT_ARRAY
    }