/Enkel-JVM-language

Enkel is a simple programming language running on jvm

Primary LanguageJava

#Enkel

Join the chat at https://gitter.im/JakubDziworski/Enkel-JVM-language Enkel is a simple programming language running on jvm

#[BLOG - Creating JVM Language] (http://jakubdziworski.github.io/categories.html#Enkel-ref) I describe this project on my [BLOG - Creating JVM Language] (http://jakubdziworski.github.io/categories.html#Enkel-ref). When in doubt reading the code take a look at the posts - all of the features are described there.

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