Help for this page

Select Code to Download


  1. or download this
    >perl -MO=Deparse -e "my $check = ($y eq $z);my $check = $y eq $z;"
    my $check = $y eq $z;
    my $check = $y eq $z;
    -e syntax OK
    
  2. or download this
    > perl -wle "my @hypothetical = (1 == 0); my $check = @hypothetical; p
    +rint $check"
    1