more help

This commit is contained in:
Erik 2016-01-18 16:59:30 +01:00
parent 6cc1adce91
commit b71fcd77c6

View File

@ -39,7 +39,7 @@ To build this example, load the 'glfw_test.lisp' file like this:
Then execute ```(bake-gl-exe)``` to build an executable, or just ```(app)``` to run the program directly from the REPL.
## The Compiler
The Carp language is very tightly integrated with it's compiler which itself is written in a dynamic version of Carp (which in turn is implemented in C). To work on a Carp program you run ```carp``` which starts the REPL. Everything you want to do to your program can be controlled from here.
The Carp language is very tightly integrated with it's compiler which itself is written in a dynamic version of Carp (which in turn is implemented in C). To work on a Carp program you run ```carp``` (first making sure it's in your $PATH, see installation instructions below) which starts the REPL. Everything you want to do to your program can be controlled from here.
For example, to compile a function named 'fib' you enter the following:
```clojure