I am trying to create a new basic language to the jvm Just to keep for myself and learn more.
I have created a parser and lexical analyzer and it looks like I have two options: interpreted and compiled.
I really want to compile my code in valid class files and not to be interpreted by my jar.
But how do I do that? I have heard of becel, are there any other possibilities?

