Re: Can the Perl module Date::Calc be added to Cygwin please?

2016-02-28 Thread Bob Goolsby
Mornin' -- You will need to direct the request to the Cygwin Project ( https://www.cygwin.com/ ). B On Sun, Feb 28, 2016 at 4:22 PM, Kenneth Wolcott wrote: > Hi; > > Can the Perl module Date::Calc be added to Cygwin please? > > Thanks, > Ken Wolcott > > -- > To unsubscribe, e-mail: beginners

Can the Perl module Date::Calc be added to Cygwin please?

2016-02-28 Thread Kenneth Wolcott
Hi; Can the Perl module Date::Calc be added to Cygwin please? Thanks, Ken Wolcott -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: use of bless

2016-02-28 Thread Kent Fredric
On 28 February 2016 at 21:59, rakesh sharma wrote: > According to docs bless returns the reference to self. That just means that if you do: my $x = {}; my $y = bless $x, "THING"; $y and $x will both be the same thing, a {} blessed into "Thing" Its just more convenient to utilize the second of

Re: use of bless

2016-02-28 Thread Shawn H Corey
On Sun, 28 Feb 2016 08:59:20 + rakesh sharma wrote: > > HI all > > I am using object oriented perl and saw return self as well as bless > being used According to docs bless returns the reference to self. Why > should we use both statements in the new method > > Sent from Mail

Re: use of bless

2016-02-28 Thread kiranmcs
Can you share the code? I believe the bless is returning the reference to self, which is captured in a variable with name self and that variable is returned from new method. Does that explains it? Thanks Kiran. On 28 Feb 2016 9:00 am, "rakesh sharma" wrote: > > > HI all > > > > I am using obje

use of bless

2016-02-28 Thread rakesh sharma
HI all I am using object oriented perl and saw return self as well as bless being used According to docs bless returns the reference to self. Why should we use both statements in the new method Sent from Mail for Windows 10