in reply to Re^4: Perl Module
in thread Perl Module

I have never seen any practical use for this information.

Practical use...

sub next_power_of_two { my %s; @s{1..shift} = (); %s =~ '/'; $'; }

...for some obscure value of "practical" ;-)

Replies are listed 'Best First'.
Re^6: Perl Module
by CountZero (Bishop) on Feb 19, 2010 at 19:34 UTC
    LOL TIMTOWTDI!!

    CountZero

    A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James