22 Performance
Every definition or expression is compiled to an internal bytecode format. Standard optimizations are applied when compiling the bytecode. For example, in an environment where when + has its usual binding, the expression (let ([x 1] [y (lambda () 4)]) (+ 1 (y))) is compiled the same as the constant 5 due to constant propagation, constant folding, and inlining optimizations.