jan tolenaar / kiezellisp / index-of-everything

Name

delay

Usage

macro

Syntax

(delay &body forms)

Description

Creates a delayed expression which is not evaluated until the function force is called. Unfortunately, the example processor always calls force.

make-html > (let z (delay (+ 1 2)))
it: z