in reply to Re^2: Clarifying the Comma Operator
in thread Clarifying the Comma Operator

In  ( 1.20 => 'foo' ) I'm not saying that the "1.20" is a string. The point is that in order to build a string from a "word" like 1.20 that sits to the left of "=>", perl determines its numeric value (NV), which it then "stringifies" to the simplest possible form ("1.2") -- and this is what the OP was struggling with.