The name of the package the method was called for is always the first argument. If you don't care about that, just shift away one argument.

But if you are trying to define functions in one package and access in another without creating objects, then OO is probably not how you want to do it. Instead look into Exporter to export the functions to the package they are used in. The basic template for a procedural module that I use looks like this:

package Demo; use Exporter; @ISA = 'Exporter'; @EXPORT_OK = qw(list @things %that can $be exported); use strict; use vars ($whatever %needed @variables); # Nifty stuff here 1;
Then when you pull it in do a use and pass the list of things you want to import:
use Demo qw(list @things);

In reply to Re (tilly) 1: OOP question by tilly
in thread OOP question by BMaximus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.