In this code:
(let (latitude longitude) (func1 a b c)
A simpler example:
(let (name score) '("Steve Wiebe" 1064500) (prn name " was the first person to score over a million points in Donkey Kong, with a score of " score))
Steve Wiebe was the first person to score over a million points in Donkey Kong, with a score of 1064500
arc> (let hat 5 (prn "hat = " hat)) hat = 5 "hat = " arc>
-----
; SBCL * (destructuring-bind (x y) '(1 2) (+ x y)) 3 ; Arc arc> (let (x y) '(1 2) (+ x y)) 3