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
17
18
-- Unknown `--flag` shapes in the positional tail are rejected upfront
-- with a clear "unrecognised flag" error and exit 1, instead of being
-- silently consumed as positional args (which used to surface as
-- misleading ILO-R012 "no functions defined" or ILO-R004
-- "main: expected N args, got N+1"). Six rerun8 personas independently
-- burned minutes on the old trap.
--
-- To pass a hyphen-prefixed token as a literal arg, separate with `--`
-- first: `ilo main.ilo -- --foo`. Anything after the first `--` is data.
--
-- The happy-path example below is exercised via the engine harness so
-- the unknown-flag guard's no-op behaviour on plain positional args
-- stays under cross-engine regression coverage.

main x:n>n;+x 1

-- run: main 41
-- out: 42