fork(6) download
  1. $a = "3.0";
  2. print "eq" if $a eq "3"; # this will not print
  3. print "==" if $a == 3; # this will print
Success #stdin #stdout 0s 3608KB
stdin
Standard input is empty
stdout
==