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


in reply to How a script becomes a module

Nice writeup, but something looks off to me. in th section "Oops, I did it again" you have the line...

print "High score is " . Local::Scores->high_score( $scores ) . "\n";

...but the variable $scores doesn't exist (at least not in that version ... i think you ment to change that so it takes in @players).

Replies are listed 'Best First'.
Re^2: How a script becomes a module
by brian_d_foy (Abbot) on Oct 05, 2004 at 22:36 UTC

    You're right: that $scores doesn't belong there. I get away with it though because I don't show you the implementation of high_score(), which only needs the instance data to get at the database.

    I've updated the code.

    --
    brian d foy <bdfoy@cpan.org>