in reply to Re^2: 02.5 == 25 - WTF?
in thread 02.5 == 25 - WTF?

prints both == and eq

Yes - though making assumptions about equivalence based on the output of perl's print() function is not a good practice.
For example:
C:\>perl -le "print sqrt(2);" 1.4142135623731 C:\>perl -le "print 'WTF' unless sqrt(2) == 1.4142135623731;" WTF
Cheers,
Rob