Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Newbie question

by stevieb (Canon)
on Aug 23, 2022 at 21:03 UTC ( [id://11146338]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub oddDigitSum {
        my @signed_integers_to_work_on = @_;
    ...
    
        for (@signed_integers_to_work_on) {
            ...
    
  2. or download this
    sub oddDigitSum {
        my @supplied_signed_integers = @_;
    ...
            if ($signed_int !~ /^-?\d+$/) {
                die "Parameter '$signed_int' isn't a signed integer";
                ...
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11146338]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (3)
As of 2024-04-25 19:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found