Is there any difference between (list f 1 2) and (f 1 2)?
If yes, then is (f 1 2) equivalent to ((f 1) 2) (currying)?
If yes, then is (a b) mean "add b to the end of list a"?
If yes, then what append function is for?
|
|
Yes:
No. Functions in Lisp aren't curried automatically. If you call a function as
No, it means "call the function |
||||
|
|
|
Also no, 'Lisp' does not support currying. |
|||
|
|
|
Yes, there's a clear difference between Lisp functions don't do currying "out of the box", but they can be defined to do so.
|
|||||||||||
|