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

kappactf/loli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)

Releases

No releases published

Packages

No packages published

Languages