Help for this page

Select Code to Download


  1. or download this
    my %one = ('a' => 'b');
    my %two = ('b' => 'a');
    ...
    $ref2 = $ref1;
    if ($ref1 == $ref2) { print "Equal.\n" }
    else                { print "Not equal.\n" }
    
  2. or download this
    Not equal.
    Equal.