Вопрос есть в коллекциях
Как присвоить значение атрибута price атома phone атрибуту payment атома customer?
- (progn (setq x (get 'price 'phone)) (setf (get 'customer 'payment) x))
- (setq (get 'customer 'payment) (get 'phone 'price))
- (setf (get 'customer 'payment) (get 'phone 'price))
- (setf customer->payment (get 'phone 'price))
- (setq customer->payment (get 'phone 'price))
- (setq customer->payment phone->price)
- (with phone (with customer (setq payment price)))
meimei1337




























