Loom Minimal Console Application Template

Overview

This is a Loom minimal console application template.

Using the Loom Minimal Console Application Template is simple. Use it for the base of any new project to quickly and easily get started creating console based applications and tools using the LoomSDK.

Try It

Use the following Loom CLI commands to run this example:

loom new MyLoomMinConsoleAppTemplate --example LoomMinConsoleAppTemplate
cd MyLoomMinConsoleAppTemplate
loom run

Screenshot

LoomMinimalConsoleApplicationTemplate Screenshot

Code

src/LoomMinConsoleAppTemplate.ls

package
{
    import system.application.ConsoleApplication;

    public class LoomMinConsoleAppTemplate extends ConsoleApplication
    {
        override public function run():void
        {

        }
    }
}

: