Home

Awesome

DScript

Open sourced, object oriented, Javascript based, extendable scripting language implemented in C#.

Example

var MyClass = {
    doSomethingComplicated: function (x, y) {
        return x * y / 10.0;
    }
};

var inst = new MyClass();
var x = inst.doSomethingComplicated(1.0, 2.0);

console.log(x);

Supports

Arithmetic operators ++, --, +, -, *, /, %

Comparison operators <, >, <=, >=, ==, !=

Boolean operators !, &, |, ^, &&, ||

Provides