Hi Felix! On Wed, Jul 03 2024, Felix Lechner via wrote: > '#$something
This expands to a quoted form, so whatever "something" splices in ends up quoted in the output. > (list #$@something) This expands to a (list ...) form, where the elements of "something" end up spliced as the list elements. Each of those elements will be evaluated in the result, because they aren't quoted. Carlo