jan tolenaar / kiezellisp / index-of-everything

Name

do

Usage

special-form

Syntax

(do form*)

Description

Evaluates the forms and returns the value of the last form. The body of a function is an implicit do block. Macros such as when and loop generate do blocks.

Description

The let and var special forms declare lexical or dynamic variables.

make-html > (do
                (let x 3)
                (let y 2)
                (+ x y))
it: 5