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


in reply to Obfuscated Glob

Wow, that's kind of cool. It's useful as an intro to typeglobs, too...

Maybe I like it because I've finally found a JAPH I was able to decode by inspection :)

SPOILER WARNING:

Basically, this sets up sub _, %_, @_, and $_ to point to letters 'h', 'p', 'a', and 'j'. %_ actually maps 'p'=>undef.

$; is then set to a reference to *_, the typeglob for all things named _.

The print line then prints the results of dereferencing that typeglob reference as a scalar ('j'), an array ('a'), a hash ('p' and undef, which is printed as just 'p'), and a subroutine, 'h'.

Very cool...
--
Mike