Search Results

4
votes
3answers
163 views

How do I get the type of a blessed ref? (ARRAY|HASH|SCALAR)

I'm passed a reference, and I want to know its type. For this purpose, "ref" works on unblessed references, but on blessed references it returns the package name it was blessed with. …
1
vote

Python v. Perl

Perl, the language, is a mess. But perl, the interpreter/VM, has an edge over python in that it is stackless (the language's calling stack doesn't use the system stack). As a result of this, Perl c …