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
-- runtime-guard: `ilo run` caps wall-clock at 60 s (default) and stdout at
-- ~100 MB (default). Override with `--max-runtime SECS` and
-- `--max-output-bytes BYTES`. Set either to 0 to disable.
--
-- Hitting the runtime cap aborts with ILO-R016; hitting the output cap
-- aborts with ILO-R017. Both are pure safety nets, a well-behaved program
-- never sees them. The mandelbrot persona run that surfaced this guard
-- missed a loop increment and produced 165 MB of stdout in an infinite
-- loop before the harness killed it; the cap turns that into a structured
-- error the agent can learn from instead.

triangle n:n>n;s=0;i=0;wh <i n{s=+s i;i=+i 1};+s 0

main>n;r=triangle 10;r

-- run: main
-- out: 45