Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^2: The day of today

by grinder (Bishop)
on Mar 07, 2008 at 13:16 UTC ( [id://672761]=note: print w/replies, xml ) Need Help??


in reply to Re: The day of today
in thread The day of today

This example confuses the issue. One might conclude that the + (plus) is necessary, when in fact it's not. It's only there to workaround print's brain-damage. It could be written less ambiguously as:

my $dayOfMonth = (localtime)[3]; print "Today is day $dayOfMonth.";

Note to gtrain: this is technically known as an array slice. You are taking the array of values returned by localtime and slicing out only the fourth (offset 3) element).

• another intruder with the mooring in the heart of the Perl

Replies are listed 'Best First'.
Re^3: The day of today
by rir (Vicar) on Mar 07, 2008 at 15:01 UTC
    my $dayOfMonth = (localtime)[3];
    In Perl terminology this is not an array slice, a slice would contrain contain more than one element . An array slice expresses a list, not a scalar. An array slice expresses a list, not an array.

    Be well,
    rir

Log In?
Username:
Password:

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

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

    No recent polls found