jan tolenaar / kiezellisp / index-of-everything

Name

try

Usage

special-form

Syntax

(try &body forms)

Description

Exception handling.

make-html > (try
                (+ 3 hello)
                (catch (ex)
                    (print-line ex))
                (finally (print-line 111)))
#<LispException Message="Undefined variable: make-html::hello">
111