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
-- ast-depth-cap: ilo caps parser nesting at 256 by default. Untrusted source
-- (think `ilo serv`) can otherwise blow the parser stack with
-- `((((...((1+1))))...))`. Override with `--max-ast-depth N` on `ilo`,
-- `ilo run`, `ilo check`, `ilo build`, or `ilo serv` when a legitimate
-- program needs deeper nesting. Hand-written ilo rarely exceeds depth 10.

shallow>n;((((1))))

main>n;shallow

-- run: main
-- out: 1