Hi guys
I want to print the name of a classVar and its value.
So I tried something like
Processor class classVarNames
do: [:each | Transcript show: each ; show: each value ; cr]
the solution....
Processor class classVarNames
do: [:each | Transcript
show: each ;
show: (Compiler evaluate: each for: Processor
logged: false)
printString ;
cr]
_______________________________________________
Pharo-project mailing list
[email protected]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project