18 lines
No EOL
363 B
Markdown
18 lines
No EOL
363 B
Markdown
# compiler
|
|
### just a simple lisp compiler to learn compiler dev
|
|
|
|
#### cloning
|
|
run ```git clone https://git.samahh.dev/sam/compiler --recursive```
|
|
|
|
#### compiling
|
|
to compile run `make`
|
|
|
|
#### running
|
|
to run the example run `make run`, or to compile another file run either
|
|
```
|
|
./compiler run filename.lisp
|
|
```
|
|
or
|
|
```
|
|
./compiler build filename.lisp binaryname
|
|
``` |