#305
destructuring-3
 

Difficulty:Basic
Topics:destructuring


You can regain the full argument if you like arguing
test not run
(= {:original-parts ["Stephen" "Hawking"] :named-parts {:first "Stephen" :last "Hawking"}}
       (let [[first-name last-name :as full-name] ["Stephen" "Hawking"]]
         __))


Code which fills in the blank: