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


in reply to Golf: ROT-n

1234567890123456789012345678901234567890 $_=pop;for$x(1..pop){y/a-z/b-za/}print
Length 38
1234567890123456789012345678901234567890 $_=pop;y/a-z/b-za/for$x(1..pop);print
Length 37, but does not work, why?
Boris

Edited by Chady -- code tags.

Replies are listed 'Best First'.
Re^2: Golf: ROT-n
by BrowserUk (Patriarch) on Nov 09, 2004 at 20:50 UTC
    perl -we" $_=pop;y/a-z/b-za/for$x(1..pop);print" syntax error at -e line 1, near "$x("

    Examine what is said, not who speaks.
    "Efficiency is intelligent laziness." -David Dunham
    "Think for yourself!" - Abigail
    "Memory, processor, disk in that order on the hardware side. Algorithm, algorithm, algorithm on the code side." - tachyon
      I know, I asked what is wrong with that line?
      Boris

        The statement-modifier form of for/foreach doesn't allow you to specify a variable. You're forced to either use $_ or use the regular form with curlies. Sucks, don't it?

        "There is no shame in being self-taught, only in not trying to learn in the first place." -- Atrus, Myst: The Book of D'ni.