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
-- Harvested from persona-rerun: agent-repair-loop. A small program with a
-- couple of helpers and Result-on-num! patterns, used to exercise the kind
-- of multi-function file an agent generates while iterating on a fix.

add x:n y:n>n;+x y
sub x:n y:n>n;p=num "2";?p{~v:-x v;^_:x}
greet n:t>t;+"hi " n
main >n;add 1 2

-- run: main
-- out: 3