Disclaimer.

This commit is contained in:
Erik Svedäng 2017-06-26 16:17:25 +02:00
parent aa1fad59e9
commit 12ac6c279e

View File

@ -47,6 +47,9 @@ foo ; symbol
```
### Special Forms
The following forms can be used in Carp source code and will be compiled to C after type checking
and other static analysis. Please note that they can not be executed at the REPL.
```
(def variable-name value) ;; Define a global variable
(defn function-name [<arg1> <arg2> ...] <body>) ;; Define a function