№11
Работа с множественными значениями
(defun return-some-values ()
(values :hello :world))
(print (return-some-values))
; :HELLO
(multiple-value-bind (first second) (return-some-values)
(print first)
(print second))
; :HELLO
; :WORLD
Работа с множественными значениями
(defun return-some-values ()
(values :hello :world))
(print (return-some-values))
; :HELLO
(multiple-value-bind (first second) (return-some-values)
(print first)
(print second))
; :HELLO
; :WORLD