ilo 0.11.3

ilo — a programming language for AI agents
Documentation
1
2
3
4
5
6
7
8
-- Prefix-binary expressions as call arguments: no intermediate names needed.

slice2 ls:L n lo:n>L n;slc ls lo +lo 2

-- run: slice2 [10,20,30,40,50] 1
-- out: [20, 30]
-- run: slice2 [10,20,30,40,50] 3
-- out: [40, 50]