jan tolenaar / kiezellisp / index-of-everything

Name

or

Usage

special-form/function

Syntax

(or expr*)

Description

Returns the value of the first argument that evaluates as true. Otherwise returns the value of the last argument. As a special form or evaluates as few arguments as possible.

make-html > (or ""
                "default")
it: "default"
make-html > (or "abc"
                "default")
it: "abc"