help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Could anyone explain why example no. 4 is different from the others?


From: Rodrigo Morales
Subject: Could anyone explain why example no. 4 is different from the others?
Date: Thu, 17 Aug 2023 03:15:50 +0000

 Could anyone explain why example no. 4 is different from the others?
Example no. 1

,----
| (append '(nil) '(nil) '(nil))
`----

,----
| (nil nil nil)
`----

Example no. 2

,----
| (funcall 'append '(nil) '(nil) '(nil))
`----

,----
| (nil nil nil)
`----

Example no. 3

,----
| (apply 'append '((nil) (nil) (nil)))
`----

,----
| (nil nil nil)
`----

Example no. 4

,----
| (apply 'append '(nil) '(nil) '(nil))
`----

,----
| (nil nil)
`----



reply via email to

[Prev in Thread] Current Thread [Next in Thread]