http://www.perlmonks.org?node_id=701425


in reply to Re: Juerd, the overlooked (ORMs, Webapps)
in thread Juerd, the overlooked (ORMs, Webapps)

Again wandering off into off-topic land
I wonder what else I'm missing.
I guess you never stop discovering stuff in Perl. After a few years of perl programming I always discover something new. I didn't know that ARGV was magic, for example, or that you could actually insert a space after the sigil and the name of a variable:
$ perl -wle 'my $ x = 3; print $ x' 3

I think that Perl is like one of these really old and huge castles (think Hogwarts), where you discover a shortcut or a secret trap door every now and then if you explore its corners (or watch Fred and George strolling around, to stay at Hogwarts).

Of course there are maps, but they are sometimes a bit boring to read when you don't have a good reason to do so (and after all you can reach your goal with the "normal" ways usually), and not everybody likes to sit in the libraries for hours ;-)

Replies are listed 'Best First'.
Re^3: Juerd, the overlooked (ORMs, Webapps)
by shmem (Chancellor) on Aug 01, 2008 at 09:04 UTC
    that you could actually insert a space after the sigil and the name of a variable
    ... I think that Perl is like one of these really old and huge castles (think Hogwarts)

    Whitespace? castle? reminds me immediately of the famous interview to Abigail...

    --shmem

    _($_=" "x(1<<5)."?\n".q·/)Oo.  G°\        /
                                  /\_¯/(q    /
    ----------------------------  \__(m.====·.(_("always off the crowd"))."·
    ");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}
Re^3: Juerd, the overlooked (ORMs, Webapps)
by FunkyMonk (Chancellor) on Aug 01, 2008 at 09:52 UTC
    I didn't know that ARGV was magic
    I knew ARGV was magical, but it was only recently that I found out just how magical it was.

    Just one of the reasons I love Perl!