I see what you are trying to get across, but it is quite muddy. I am using a simple looking module for getting SETI@Home stats (SETI-WebStats-1.02), so far this is the code I got working
use SETI::WebStats;
my $emailAddr = "wmarcy\@stny.rr.com";
my $seti = SETI::WebStats->new($emailAddr);
my $unitsProcd = $seti->numResults;
print "Work Units Processed = ",$unitsProcd;
The third line is what is throwing me, what does it do? I know it is "invoking" the module some how, but I can't fathom how (how is that for a complete idiot newbie question?)
Thanks for the help!
Oh, and the program actually works! I am amazed. Even though I only added one line and removed a half dozen or so that I didn't need.
On looking at my question preview mode, I am also wondering what the operator "->" is doing in the program also?
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.