Help for this page

Select Code to Download


  1. or download this
    $foo = bar(@params);  
    # You don't know what value $foo has
    ...
    }
    sub foo { print "foo: $foo\n"; }
    # now $foo is restored!
    
  2. or download this
    {
        local $Data::Dumper::Terse = 1;
        $baz = Dumper($data);
    }