Help for this page

Select Code to Download


  1. or download this
    print "==" if $a == ($b * $c);
    
  2. or download this
    $a = "2.0";
    print "eq" if $a eq "2"; # Nope
    print "==" if $a == 2;   # Yup