(let* ((width 200) (height (/ width 2)) (img (car (gimp-image-new width height RGB))) ) ;; closes the list of variables (gimp-display-new img) )
- let: independent variables
- let*: related variables
let*
(let* ((width 200) (height (/ width 2)) (img (car (gimp-image-new width height RGB))) ) ;; closes the list of variables (gimp-display-new img) )
let*
You don't have to use two of them, but by convention a lot of people do.