You are on page 1of 1

(defun arbol()

(setf (get 's 'hijos) '(a b c))


(setf (get 'a 'hijos) '(d))
(setf (get 'b 'hijos) '(e f i))
(setf (get 'c 'hijos) '(j))
(setf (get 'f 'hijos) '(g k))
)

You might also like