November 2010
Intermediate to advanced
504 pages
12h 45m
English
We define local functions using the flet command. The flet command has the following structure:
(flet ((
function_name(arguments)...function body...))
...body...)
At the top of the flet, we declare a function (in the first two lines). This function will then be available to us in the body
. A function declaration consists ...