On Sep 12, 11:33 pm, [EMAIL PROTECTED] (Perl Pra) wrote:
> Hi Gurus,
>
> I am aware of perl, Now I need to code in perl using oops.
Then you should also be aware of Perl docs. Start with:
perldoc perltoot
(or maybe skim "perldoc perlobj" first)
--
The best way to get a good answer is to ask a
On Sep 11, baby lakshmi said:
>I am learning OOPs concepts. Can anyone tell me what is the real use of
>UNIVERSAL class(in built)?
The UNIVERSAL class offers three methods for every class: isa, can, and
VERSION. It also provides a place for you to write methods available to
every class.
>Als