Skip to content
/ Jail Public

JAIL - Just Another Interpreted Language

Notifications You must be signed in to change notification settings

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 subset of ECMAScript 1

See Source Repository

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();