Hacker News new | ask | show | jobs
by agrafix 3188 days ago
The + operator is not an explicit numeric conversion. What numeric type is it converting to? In Python you can also combine two lists using the + operator.

Haskell for example requires to be explicit about this:

    y = (read "5" :: Int) + 5
1 comments

Please see my sibling reply. I was referring to perl, not python or haskell.