Help for this page

Select Code to Download


  1. or download this
    package private;
    our $my_scalar = 'my scalar';
    our @my_array  = qw(my array);
    ...
    
    print "\nDumpvalue:\n";
    Dumpvalue->new->dumpvars('private');
    
  2. or download this
    ARRAYS => private::my_array
    SCALARS => private::my_scalar, private::my_array, private::my_hash
    HASHES => private::my_hash
    ...
    %my_hash = (
       'my' => 'hash'
    )