An open API service indexing awesome lists of open source software.

https://github.com/yanghuan/scriptinterpreter

Script Interpreter base on .Net 4.0 dynamic language runtime;
https://github.com/yanghuan/scriptinterpreter

Last synced: 5 months ago
JSON representation

Script Interpreter base on .Net 4.0 dynamic language runtime;

Awesome Lists containing this project

README

          

# ScriptInterpreter
Implementation of the MyScript scripting language engine.

## Introduction
* Recursive syntax analysis of the decline
* Base on .Net 4.0 dynamic language runtime
* Similar Lua/Javascript grammar
* Support dynamic language common functions, such as table (association array),
* function as the first type, closure, uncertain parameters,Meta table (similar to the Lua Metatable)
* C# friendly interoperability

## Sample
```script
local i = "hello wrod"
print(i)

for(i = 0; i < 10; i++) {
print(i)
}
```