Help for this page

Select Code to Download


  1. or download this
    perl -w -e 'use strict;my $t;
    if (scalar (keys %{$t->{r}}))
    ...
    print "t->{r} = $t->{r}\n"; 
    '
    t->{r} = HASH(0x80fbc50)
    
  2. or download this
     perl -w -e 'use strict;my $t = undef;
    my %p = %{$t->{r}};
    print "t->{r} = $t->{r}
    ";
    '