locrian 0.2.1

A simple embeddable functional programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package platform:
    pixi build -t {{ platform }} -o output/{{ platform }}

publish:
    #!/usr/bin/env bash
    for pkg in $(find output -type f \( -name "*.conda" -o -name "*.tar.bz2" \) ); do
        pixi upload https://prefix.dev/api/v1/upload/cheetah "${pkg}" || true
    done
    exit 0

build-and-publish:
    #!/usr/bin/env bash
    if ../cicada/cicada commit '\[publish\]'; then
      for target in linux-64 linux-aarch64 win-64; do
        just package $target
      done
      just publish
    fi