From: <lm...@bi...> - 2006-11-03 19:10:39
|
> >The only downside I see to "lexpr" is maybe people with think it means > >"list expr", but that seems unlikely, what would a list expr do? > > list expr: evaluates a list of expressions. Right but the return value is what? The last one evaluated? And how is that any different than a list of statements? set foo [lexpr { a = 1; b = 2; c = 3; }] vs set list [list "set a 1" "set b 2" "set c 3"] set foo [lexpr $list] Sort of seems like the list expr semantics are the L expr semantics or pretty close. -- --- Larry McVoy lm at bitmover.com http://www.bitkeeper.com |