On Thu, May 23, 2002 at 10:51:20AM +0100, Mark Fowler wrote: > [% wobble.wibble = "Hello Nurse!" %] > > > Thus taking advantage of the stash cloning and restoration being only skin > deep.
You can also use the pre-defined global namespace 'global': [% global.foo = 'bar' %] Anything in global is, funnily enough, accessible globally. :-) A
