Skip to content
This repository has been archived by the owner on May 2, 2023. It is now read-only.

Latest commit

 

History

History
39 lines (29 loc) · 1.02 KB

README.md

File metadata and controls

39 lines (29 loc) · 1.02 KB

Loli logo

Loli

Embedded programming language

fn range(start: Integer, end: *Integer = -1): List[Integer]
{
    var result: List[Integer] = []
    if end == -1: {
        end = start
        start = 0
    }
    for n in start...end:
    {
        result.push(n)
    }
    return result
}

Make everything, it will work everywhere

Loli applications can run in any operation system and architecture. It can be embedded into HTML code and be used to make wonderfull websites.

Write once. Run everywhere!

Building from sources

Compiling depends make and CMake 3.6 or later

mkdir ./build               # make build directory
cmake -S ./ -B ./build      # generate make file to build directory
cd build && make            # compile loli

Then in the build directory you can find files: loli & libloli.so (loli.exe & libloli.dll on Windows)