/EnkelJVM

A new language run on JVM.

Primary LanguageJava

Enkel

Enkel is a simple programming language running on the jvm

It consist of 20 posts covering all the issues. When in doubt browsing the code, I encorouge you to take a look at the blog.

Compiling and running Enkel scripts

1.Build compiler into executable jar

mvn clean package

2.Compile sample .enk file (You can find more examples in EnkelExamples directory)

java -classpath compiler/target/compiler-1.0-SNAPSHOT-jar-with-dependencies.jar:. com.kubadziworski.compiler.Compiler EnkelExamples/DefaultParamTest.enk

3.Run compiled .enk program

java DefaultParamTest