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
- Host: GitHub
- URL: https://github.com/abarhub/tinyc
- Owner: abarhub
- Created: 2022-07-12T07:49:34.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-16T16:28:49.000Z (about 4 years ago)
- Last Synced: 2023-03-25T15:30:57.965Z (over 3 years ago)
- Language: C
- Homepage:
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
}
```