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
-- use-reexport-outer.ilo — facade module that re-exports names from inner
--
-- `use re:"path" [names]` imports the listed names AND adds them to this
-- module's public surface, so consumers of outer can import them directly.
--
-- This file is NOT the entry point. It is imported by use-reexport-main.ilo.

-- Re-export foo and bar from inner so consumers see them as part of outer's API.
use re:"use-reexport-inner.ilo" [foo bar]

-- baz is outer's own function — also exported.
baz n:n>n;+n 10