Skip to content
TurtleKitty edited this page May 11, 2019 · 2 revisions

let

This creates a new environment with new variables. It's parent environment is the surrounding lexical scope.

(let (x 1 y 2)
   (+ x y))    ; 3
Clone this wiki locally