in reply to Re: One more quine
in thread How I Learned About Quines

perl -e 's sslcsene s sa zs sgxlt print lc for uc sazsslcseneazsazsaazzsazsgxltazprintazlcazforazucaz'

gives:

s sslcsene s sa zs sgxlt print lc for uc s sslcsene s sa zs sgxlt print lc for uc

Which is not the same :(

Replies are listed 'Best First'.
Re^3: One more quine
by Hue-Bond (Priest) on Apr 20, 2010 at 14:06 UTC
    Which is not the same :(

    Works for me on 5.10. Nice job mtve!

    --
     David Serrano
     (Please treat my english text just like Perl code, i.e. feel free to notify me of any syntax, grammar, style and/or spelling errors. Thank you!).

      5.8.8 here.
Re^3: One more quine
by locked_user mtve (Deacon) on Apr 20, 2010 at 15:57 UTC

    indeed it wont work on 5.8, it's a bug in perl. compare

    print lc, uc for uc abc

    with

    print lc, uc for uc 'abc'

    for now i don't know how to fix it.