Re: Perl Object Creation problem...
- From: Aukjan van Belkum <aukjan@xxxxxxxxx>
- Date: Thu, 29 Jun 2006 13:31:10 +0200
howa wrote:
use lib "C:\\temp\\perl";
use class::user;
$u = new user();
----------------------
This should be:
$u = new class::user; (or pref.: my $u = new class::user;)
or
$u = class::user->new(); (or pref.: my $u = class::user->new();)
Aukjan.
.
- Follow-Ups:
- Re: Perl Object Creation problem...
- From: howa
- Re: Perl Object Creation problem...
- References:
- Perl Object Creation problem...
- From: howa
- Perl Object Creation problem...
- Prev by Date: Re: Date formatting
- Next by Date: Re: How to ignore 1st line in a file when reading
- Previous by thread: Perl Object Creation problem...
- Next by thread: Re: Perl Object Creation problem...
- Index(es):