Help for this page

Select Code to Download


  1. or download this
     foreach  my $ts ( @{$test}  )
        {
    ...
                if ( $ts ne $sc ) # <- You will fail here
                {
                    print "FALSE\n";
    
  2. or download this
    1. loop: 'A' ne 'A' -> okay. They are equal
    2. loop: 'A' ne 'B' -> TRUE So fail...