Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 716 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 716 Bytes

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