letとlet*
http://www.lispworks.com/documentation/HyperSpec/Body/s_let_l.htm
let and let* create new variable bindings and execute a series of forms that use these bindings. let performs the bindings in parallel and let* does them sequentially.
letは平行、let*は直列らしい