added lambda? predicate

This commit is contained in:
2018-04-07 15:21:05 +00:00
parent 3d344fc649
commit 746dceff43
2 changed files with 16 additions and 1 deletions

View File

@ -2,7 +2,7 @@
## Language Syntax
A HCL program is composed of more expressions.
A HCL program is composed of expressions.
## Keywords
* nil
@ -64,12 +64,16 @@ A HCL program is composed of more expressions.
## Defining a function
```
(defun function-name (arguments)
| local variables |
function body
)
```
```
(set function-name (lambda (arguments)
| local variables |
function body
)
```