ilo 26.5.0

ilo - the token-minimal programming language AI agents write
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- `ilo --vm file.ilo`, `--jit`, and the default engine all
-- auto-run `main` on a multi-fn file when no func name is supplied.
-- Before the fix, only the default engine did:
--   * --vm       -> silent `nil`, exit 0
--   * --jit-> bare "Cranelift JIT: compilation failed"
-- All four are now consistent with the documented auto-pick-main
-- behaviour (SKILL.md: "Multi-function files require either a
-- function name argument or a function called `main`.").

helper a:n>n;+a 1
main>n;helper 41

-- run: main
-- out: 42
-- run: helper 9
-- out: 10