Skip to content

KevinOfNeu/Enkel

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

Enkel (JVM based language)

Enkel is a simple programming language running on the jvm

Build & Run

  • Generate parser code from ANTLR ./gradlew :antlr:generateGrammarSource

  • Compile *.enk to *.class
    Using IDEA

  • Run java *.class

Example

  • Input(Fields.enl)
Fields {
int field
start {
   field = 5
   print field
}
}
  • Output(Fields.class)

Decompiled form:

public class Fields {
    public int field;

    public void start() {
        this.field = 5;
        System.out.println(this.field);
    }

    public Fields() {
    }

    public static void main(String[] var0) {
        (new Fields()).start();
    }
}

Other examples please see ./EnkelExamples/*.enk

TODO

  • Other grammar feature
  • IDEA highlight plugin
  • Support debugger
  • Port to LLVM IR