Skip to content

zarat/Jail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 

Repository files navigation

Jail - Just Another Interpreted Language

JAIL is a general purpose scripting language to integrate in applications and games. Data is exchanged in JSON format. It is a forked subset of ECMAScript 1

Features

  • Dynamically typed
  • Object oriented
  • Static and dynamic Library

Example

class Test {

    Test: function(value) {
        this.value = value;
    },
    
    Show: function() {
        print(this.value);
    }
    
};

var t = new Test("Hello world");

t.Show();