------------------------------------------------
On Tue, 4 Feb 2003 18:51:16 +0200 , "Zysman, Roiy" <[EMAIL PROTECTED]> wrote:

> Hi All
> Why does the command 'print (localtime(time))[4];' does not work
> And the following 2 lines do work
> '[my $temp = (localtime(time))[4];
> Print $temp;'
> 
> Is there away to avoid the temporary variable ?

print ((localtime(time))[4]);

http://danconia.org

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to