in reply to Re^3: Easily catalog subroutines with a synopsis comment
in thread Easily catalog subroutines with a synopsis comment

What's the name of the module this comes from?


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
"Too many [] have been sedated by an oppressive environment of political correctness and risk aversion."
  • Comment on Re^4: Easily catalog subroutines with a synopsis comment

Replies are listed 'Best First'.
Re^5: Easily catalog subroutines with a synopsis comment
by Herkum (Parson) on Apr 20, 2008 at 00:41 UTC

    The module name is EEBL::Game, and it is called (eventually) via the public API of playball. I would hope that when I reference my API's within the context of a specific module that they make sense.

    I wonder if writers and linguistics would make a better programmers than a mathematicians? The ability to express yourself clearly in your code, to often seems to be a secondary concern for too many programmers.

        Sorry, maybe I was not clear, the module is EEBL::Game, the API is playball so,
        my $game = EEBL::Game->new(); $game->playball;

        There are other APIs related to the Game that have no reference to 'playball', to keep it organized(and from me going insane), I prefix '__' to appropriate internal subs.