#304
destructuring-2
 

Difficulty:Basic
Topics:destructuring


Or in let expressions
test not run
(= "Rich Hickey aka The Clojurer aka Go Time aka Macro Killah"
       (let [[first-name last-name & aliases]
             (list "Rich" "Hickey" "The Clojurer" "Go Time" "Macro Killah")]
         __))


Code which fills in the blank: