jan tolenaar / kiezellisp / index-of-everything

Name

throw-error

Usage

builtin-function

Syntax

(throw-error &rest args)

Description

Throws an exception of type LispException. The arguments are combined as if by the function string.

make-html > (let n 2)
it: n
make-html > (throw-error "There are " n " things wrong.")
There are 2 things wrong.