revising ev, was: problem with "concatting variables"



On 2013-09-26, Stavros Macrakis <macrakis at alum.mit.edu> wrote:

> Yes, some power users would find that useful -- maybe something like the
> Lisp comma convention `(... ,x) should be added to buildq, e.g.
>
>          buildq([],1+unquote(x))

Well, for the record, buildq already has something corresponding to the
comma in a backquoted expression -- the variables in the list (first
argument) are substituted into the otherwise quoted expression. So
buildq([x], 1 + x) is analogous to `(1 + ,x). I suppose it could be
argued that we don't need unquote since we already have buildq.

best

Robert Dodier