http://qs321.pair.com?node_id=415238


in reply to Re^4: strong typing
in thread (Completely OT) - Hero(i)n programming language on Slashdot

Those aren't types in Perl. Those are values.

Replies are listed 'Best First'.
Re^6: strong typing
by jdporter (Paladin) on Dec 16, 2004 at 03:21 UTC
    Huh? You're saying numeric is a value? No. It's a type. Values have types. It's the type of "foo" that perl is complaining about, not its value.

      Containers have types in Perl. Values don't. That's how (I say) Perl's type system works.

      (Okay, that's not entirely true, but if you need gory details, look in sv.h and Devel::Peek. My point is that Perl doesn't expose the types of values to users.)

        O.k., my point exactly. How things work under the covers is, to some extent (some great extent, in the case of highly dynamic languages like perl) irrelevant to the users of the language. As far a perl programmers are concerned, 5 and "foo" have different types. perl tells us as much. We really don't care whether perl determines their types by some container tagging system, or whatever other means.