This works:
(+ 1 2 3) 6
This doesn\'t work:
(+ \'(1 2 3))
This works if \'cl-*\' is loaded:
cl-*
(eval (cons '+ '(1 2 3))) -- though not as good as 'reduce'
(eval (cons '+ '(1 2 3)))