an attempt to write a compiler for a subset of C following this tutorial by Nora Sandler: https://norasandler.com/2017/11/29/Write-a-Compiler.html
Find a file
2020-08-20 22:37:30 +02:00
.idea Implemented lexer 2020-08-15 23:36:29 +02:00
Compiler corrected implementation of unary operators 2020-08-20 22:37:30 +02:00
stage_1 corrected project to work with test_compiler.sh 2020-08-19 23:29:07 +02:00
stage_2 lexing and parsing unary operators 2020-08-20 17:11:43 +02:00
.gitignore Implemented lexer 2020-08-15 23:36:29 +02:00
grammar lexing and parsing unary operators 2020-08-20 17:11:43 +02:00
README.md Update README.md 2020-08-17 22:15:23 +02:00
test_compiler.sh corrected project to work with test_compiler.sh 2020-08-19 23:29:07 +02:00

lcc

This is an attempt to create a compiler for a subset of C. It is written in c# following this tutorial by Nora Sandler. It was made to learn more about compilers and is not made for actual use.