in reply to DESTROYing an object
first one: while (1) { my $variable = \$variable; } second piece: define a class with this new: sub new { my $self = {}; $self->{"parent"} = $self; $self->{"child"} = $self; bless $self; return $self; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: DESTROYing an object
by Abigail-II (Bishop) on Dec 12, 2002 at 12:20 UTC |