Thanks!
Hmm, I didn't know this value_of() function. Is it the same as
locals().get() ?
It is implemented as a hasattr(self, name, default=None). When values are passed in to the template, via the dictionary returned from a controller, they become Template instance variables.
I would not advise using the locals() in a template it get values. Things that are going on in Kid right now may (or may not) break that.
-- David

