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
-- `num` trims leading/trailing ASCII whitespace before parsing, so CSV cells
-- like " 77516" (with a leading space after the comma) parse cleanly without
-- silently becoming Err. Internal whitespace still fails the parse.

leading>n;num!! " 77516"
trailing>n;num!! "77516 "
both>n;num!! "  -3.14  "
sci>n;num!! " 1e10 "

-- run: leading
-- out: 77516
-- run: trailing
-- out: 77516
-- run: both
-- out: -3.14
-- run: sci
-- out: 10000000000