First example:
(defun first (a)
'(a 1))
(first 2) => (a 1)
Second example:
(defun second (b)
(+ b 1))
(second 1) => 2
How can I get (2 1)
with (first 2)
?
First example:
(defun first (a)
'(a 1))
(first 2) => (a 1)
Second example:
(defun second (b)
(+ b 1))
(second 1) => 2
How can I get (2 1)
with (first 2)
?