Help for this page

Select Code to Download


  1. or download this
    use Devel::Size qw(size);
    my @array;
    ...
    my $hash_size = size(\%hash);
    
    print "Array: $array_size, Hash: $hash_size\n";
    
  2. or download this
    use Devel::Size qw(size);
    use Data::Dumper;
    ...
    my $hash_size = size(\%hash);
    
    print "Array: $array_size, Hash: $hash_size\n";