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

https://github.com/abarhub/tinyc

Interpreter for subset of C
https://github.com/abarhub/tinyc

Last synced: 5 months ago
JSON representation

Interpreter for subset of C

Awesome Lists containing this project

README

          

# tinyc

Interpreter for subset of c language.

- [x] lexer
- [ ] parser (work in progress)
- [ ] syntax analyser
- [ ] interpretor (work in progress)

syntax :
- [ ] type : int, string
- [ ] operator : +, -
- [ ] function : printf
- [ ] control structure : if, while

Example :
```C
void main(){
int x=6;
int y;
y=8;
}
```