At 23:31 +0100 2001.02.25, Detlef Lindenthal wrote:
>And another wish:
>MacPerl would gain a lot of elegance if we could have
>a command " p r i n t l ";
>so instead of writing
>   print $i++, "\n" ;
>one could type
>   printl $i++;
>this for sure looks better and saves lots of
>keyboard acrobatic.

        sub printl { print @_, "\n" }

or

        #!perl -l

or

        $\ = "\n";

-- 
Chris Nandor                      [EMAIL PROTECTED]    http://pudge.net/
Open Source Development Network    [EMAIL PROTECTED]     http://osdn.com/

Reply via email to