I was reading this paper on LISP by McCarthy (way above my skill set). While defining the evaluation of (LABEL, f, e) here, he used an M-expression (I think it's an M-expression, correct me if I am wrong) list[x;y]
.
{Actually, list[cadar[e];car[e]]
}.
According to how I understood it, it symbolizes (e1, e2) where e1 and e2 are S-expressions. Did I get it right or is it something else, and what is the corresponding expression for list[x;y]
?
Thank you.