April 27, 2009
4:29 p.m.
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]