Internal Libraries
This folder documents IlluLang internal runtime libraries imported with angle-bracket module IDs.
Examples:
import "<time>"
import win "<windows>"
Available docs:
TIME.html- high-precision clocks and sleep utilities.WINDOWS.html- Win32-focused platform helpers and GUI primitives.THREAD.html- task spawning, channels, and baseline pool APIs.FS.html- baseline file-system helpers.NET.html- baseline network capability and host resolution stubs.HTTP.html- baseline HTTP response object API.PROCESS.html- subprocess/system command baseline.SYNC.html- baseline sync primitives (mutex ids).CRYPTO.html- baseline hashing and random byte placeholders.JSON.html- baseline parse/stringify placeholders.SQLITE.html- baseline sqlite handle lifecycle placeholders.REGEX.html- baseline compiled-match style helper.OS.html- platform/environment helpers.UI.html- cross-platform UI abstraction baseline.AUDIO.html- baseline audio capability stubs.IMAGE.html- baseline image info/resize stubs.ZIP.html- baseline archive pack/unpack stubs.FFI.html- controlled native interop baseline stub.TESTING.html- internal test/benchmark helpers.METRICS.html- counters and timer helpers.
Notes:
- Internal libraries are runtime-provided modules, not filesystem modules.
- Import IDs use the form
"<name>". - Importing unknown internal IDs raises an import error.