I'm developing a small language in Java, that is C-likes.
You need the Java JRE 1.8 or higher to start the CAlpha.exe file.
There are 5 modifications to run this project.
- Compiling: CAlpha -c [-o (output)] (input)
- Preprocessing only: CAlpha -p [-o (output)] (input)
- Interpreting preprocessed code: CAlpha -i (input)
- Running compiled code: CAlpha (input)
- or linking a couple of compiled code: CAlpha [-o (output)] -link (File1) (File2)...
This project is fully written in std-java-lib, without any other library!