[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: newbee question...
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Fri, 20 Oct 2000 22:10:51 -0200 (EDT)
>function Matrix:delete()
> self = nil
>end
despite the appeareances, this does not set the value of the caller object to
nil: it only sets the value of the local variable 'self' to nil.
this variable is an ordinary local variable (except that it's implicit),
which is initialized to the value of the caller object.
--lhf