Reputation: 4773
I am researching for a project that will involve my project to compile simple enough java files. From my research I have decided not to try and build my own compiler as this would just take too much time.
So does anyone know what would be the best compiler to implement in this project so that I would be able to compile java files that are submitted to the program?
Upvotes: 5
Views: 309
Reputation: 4263
This almost sounds like you really need a script-y approach that does three things:
Since you say you want to start with Java, but move to other languages, I would suggest investigating ANT. It will do builds in many languages and can facilitate executing/grading the resulting object code.
Upvotes: 0