NAME
EvalList — Take list and run eval on each element.
SYNOPSIS
EvalList ListValue
DESCRIPTION
Return Value
None.
Arguments
ListValueList with elements to evaluate.
More Info
Goes through each element of the list and runs eval on it.

For information regarding exceptions / errors, see here.
EXAMPLES
% set MyList {{puts One} {puts Two}}
{puts One} {puts Two}
% EvalList $MyList
One
Two
SEE ALSO
eval
KEYWORDS
eval, execute, list