Skip to content

JakubDziworski/Enkel-JVM-language

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Enkel

Build Status

Enkel is a simple programming language running on the jvm

Since day one I've been describing whole project development process on my blog post series - Creating JVM Language. 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. Make sure java and mvn are using Java 8:
> export JAVA_HOME=/home/me/jdks/JDK8
> mvn --version
Apache Maven 3.8.6 (84538c9988a25aec085021c365c560670ad80f63)
Maven home: /usr/local/Cellar/maven/3.8.6/libexec
Java version: 1.8.0_352, vendor: Temurin, runtime: /Users/kuba/Library/Java/JavaVirtualMachines/temurin-1.8.0_352/Contents/Home/jre
Default locale: en_PL, platform encoding: UTF-8
OS name: "mac os x", version: "10.16", arch: "x86_64", family: "mac"
> java -version
openjdk version "1.8.0_352"
OpenJDK Runtime Environment (Temurin)(build 1.8.0_352-b08)
OpenJDK 64-Bit Server VM (Temurin)(build 25.352-b08, mixed mode)
  1. Build compiler into executable jar
mvn clean package
  1. 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
  1. Run compiled .enk program
java DefaultParamTest

About

Enkel is a simple programming language running on the jvm

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published