Skip to content

bagobor/TinyLS

 
 

Repository files navigation

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

About

A tiny stack for embedded LoomScript/AS3

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 46.0%
  • C 38.5%
  • LiveScript 15.3%
  • Other 0.2%