Prev: TclOO: Is it possible that destructor is called on an object, butconstructor is not?
Next: How to know the memory used by a Tcl program?
From: pmarin on 24 Jan 2010 08:19 currently I am using this: method mark {} { [self object] sweep } method sweep {} { puts hello } Any better way?
From: Georgios Petasis on 24 Jan 2010 08:23 στις 24/1/2010 15:19, O/H pmarin έγραψε: > currently I am using this: > > method mark {} { > [self object] sweep > } > > method sweep {} { > puts hello > } > > Any better way? method mark {} { my sweep } George
From: pmarin on 24 Jan 2010 08:37 On Jan 24, 2:23 pm, Georgios Petasis <peta...(a)iit.demokritos.gr> wrote: > ÏÏÎ¹Ï 24/1/2010 15:19, O/H pmarin ÎγÏαÏε: > > > currently I am using this: > > > method mark {} { > >  [self object] sweep > > } > > > method sweep {} { > >  puts hello > > } > > > Any better way? > >   method mark {} { >    my sweep >   } > > George Thanks George, The man pages are beginning to stun me.
From: Gerald W. Lester on 24 Jan 2010 15:20 pmarin wrote: > currently I am using this: > > method mark {} { > [self object] sweep > } > > method sweep {} { > puts hello > } > > Any better way? What OO extension are you using? -- +------------------------------------------------------------------------+ | Gerald W. Lester | |"The man who fights for his ideals is the man who is alive." - Cervantes| +------------------------------------------------------------------------+
From: pmarin on 24 Jan 2010 16:22
On Jan 24, 9:20 pm, "Gerald W. Lester" <Gerald.Les...(a)cox.net> wrote: > pmarin wrote: > > currently I am using this: > > > method mark {} { > > [self object] sweep > > } > > > method sweep {} { > > puts hello > > } > > > Any better way? > > What OO extension are you using? > > -- > +------------------------------------------------------------------------+ > | Gerald W. Lester | > |"The man who fights for his ideals is the man who is alive." - Cervantes| > +------------------------------------------------------------------------+ TclOO. It needs a decent tutorial. |