Maxima Function
endcons (expr, list)
Returns a new list consisting of the elements of list followed by expr. endcons also works on general expressions, e.g. endcons(x, f(a,b,c)); -> f(a,b,c,x).
list
endcons
endcons(x, f(a,b,c));
f(a,b,c,x)