Jim Spath wrote:
> The following does not produce any output:
> 
> foo = 0;
> FOREACH value IN foo;
>    value;
> END;
> 
> According to the docs, I'd expect it to output 0.

FYI, it seems to work if I do this:

foo = 0;
FOREACH value IN foo.grep();
   value;
END;

This is my current workaround.

_______________________________________________
templates mailing list
[email protected]
http://mail.template-toolkit.org/mailman/listinfo/templates

Reply via email to