in reply to Fibo Golf challenge on 3 monkeys

thospel did say on #perlgolf (ircnet) without much thinking -
perl -le'print$,=$.+++($.=$,||1)for h..z'
;-)

--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}

Replies are listed 'Best First'.
Re^2: Fibo Golf challenge on 3 monkeys
by jdalbec (Deacon) on Jul 16, 2007 at 22:35 UTC
    The output of this code starts at F(2)=1, which is somewhat non-standard. A minor change causes the output to begin at F(1)=1 like that of the OP's code.
    perl -le'print$,=$.+++($.=$,)||1for h..z'