/TinyLS

A tiny stack for embedded LoomScript/AS3

Primary LanguageC++

TinyLS (WIP)

An extremely lean stack for embedding LoomScript (as you might embed Lua, but will all the LoomScript/AS3 goodies)

Forum Post: https://www.loomsdk.com/forums/loom-with-native-c/topics/tinyls-embedded-loomscript

Compiles on OSX currently and doesn't yet support JIT compilation

rake build:osx generates tinylsc (compiler) and tinyrun (executes a Main.loom with a static main entry point)

For example:

package
{
    public class HelloTinyLS
    {
        public static function main()
        {
            trace("Hello from TinyLS!");

            var pi = Math.PI;

            trace("PI is", pi);
        }
    }

}

For more information please see: http://www.LoomSDK.com