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
- Dynamically typed Wiki -> Syntax
- Object oriented
- extendable in c/c++ Wiki -> Plugins
class Test {
Test: function(value) {
this.value = value;
},
Show: function() {
print(this.value);
}
};
var t = new Test("Hello world");
t.Show();