CondorLang / Condor

A fast, simple, and intelligent new programming language
BSD 3-Clause "New" or "Revised" License
34 stars 11 forks source link

Generate Java byte code #5

Closed cycl0n3 closed 7 years ago

cycl0n3 commented 8 years ago

Maybe we can generate java bytecode with your language.

chaseWillden commented 8 years ago

Just to clarify, what you are saying, take the syntax of my code and translate it into the Java bytecode so that my language can run with the Java JVM? That is an interesting idea? Have you done any research on how to do that or implement it? Great idea though.

cycl0n3 commented 8 years ago

Writing bytecode directly is difficult process, so what can be done is producing intermediate Jasmine files which then can be compiled to java bytecode. I found this link [http://www.ceng.metu.edu.tr/courses/ceng444/link/f3jasmintutorial.html] to be useful. The homepage is: [http://jasmin.sourceforge.net/guide.html]