A visual compiler made in Java for learning purposes. Work in progress
It's your every day compiler really, with a basic Lexer and Parser. You can open up a file with some code (the parser is made so that it identifies C-ish types of files), run the program and see the internal work of a compiler.
It comes with an integrated text editor so you can write and edit your code in here!
If you are developer simple cloning this project with a git clone
and using the Gradle Wrapper shipped in should suffice.
To build this project using Gradle:
git clone projectUrl
cd weebCompiler
./gradlew clean build
- Open IntelliJ
- Select
Open..
and search for the weebCompiler folder - Done!
In the case you just want to see it working go to the Releases and download an appropiate executable for your operative system.
Do a pull request and I pretty much accept anything that makes the understanding of a compiler easier.