Help for this page

Select Code to Download


  1. or download this
    print "\@D is not the same as \@E\n" unless check_same( \@D, \@E );
    print "\@D is the same as \@F\n" if check_same( \@D, \@F );
    
  2. or download this
    sub check_same {
        my ( $ref1, $ref2 ) = @_;
    ...
        }
        return 1;
    }