ilusm.dev

zzz

Test sentinel module - a minimal stub that sits at the end of the alphabet. Its only purpose is to confirm that the stdlib loader successfully processes every module through to the last one. Exports one function, zzz_foo, which returns 123.

Load with: use zzz

What this module does

zzz is a sentinel. It is alphabetically the last module in the stdlib and exists to give test harnesses a reliable way to assert that loading the entire stdlib completes without error. You would not use this in application code.

Quick example

use zzz

# Confirm the module loaded correctly
prn(zzz_foo())  # 123

Functions

Sentinel

zzz_foo()

Returns 123. A no-op sentinel confirming the module loaded.

Notes

  • Requires trl.
  • Not intended for application use.