An open API service indexing awesome lists of open source software.

https://github.com/blevic/simple-c-compiler

My C compiler, written in C (and Python)
https://github.com/blevic/simple-c-compiler

c compiler lexer python

Last synced: about 2 months ago
JSON representation

My C compiler, written in C (and Python)

Awesome Lists containing this project

README

          

# simple-c-compiler
My C compiler, written in... C (ok, also Python)

To execute lexer:

```
cd build
cmake ..
make
./lexer
```

Based on [Nora Sandler](https://github.com/nlsandler)'s write-your-C-compiler series.