Hi,
I'm really new at the lisp and I need your help.
I have got a list
This number(N) I want to add at the end of the list. The result should be
(5 6 4 2 N).
For example N=7 then the list is (5 6 4 2 7).
How can I do it ? Please help me.
Thanks in advance. Mike
I'm really new at the lisp and I need your help.
I have got a list
(setq S '(5 6 4 2))
When I call some function which looks like
(defun add (S N) (...) ) where S is the list and the N is a number.This number(N) I want to add at the end of the list. The result should be
(5 6 4 2 N).
For example N=7 then the list is (5 6 4 2 7).
How can I do it ? Please help me.
Thanks in advance. Mike