Clock, Unix timestamps, milliseconds, sleep, UTC/local time and date-time components.
time() · unix() · millis() · sleep() · local() · utc() · components()
Math constants and helpers exposed through the Math blueprint.
Math.PI · Math.E · Math.TAU · Math.sqrt() · Math.pow() · Math.clamp()
Pseudo-random values, integer ranges, list choice and in-place shuffling.
random() · randint() · choice() · shuffle()
String utilities implemented with Eymenium's existing indexing and split/join primitives.
String.reverse() · String.chars() · String.count() · String.replace()
List searching, indexing helpers, copying, summing and min/max operations.
List.contains() · List.index_of() · List.reverse() · List.sum() · List.min()
Convenience wrappers for Eymenium's string-keyed dictionaries.
Dict.has_key() · Dict.get() · Dict.set() · Dict.size() · Dict.key_list()
Simple wrappers around the interpreter's native shell-command primitive.
OS.system() · OS.run()
Small calendar helpers built on the time module.
now() · today() · clock() · is_weekend()
Small reusable control-flow and value helpers.
Utils.clamp() · Utils.coalesce() · Utils.between() · Utils.repeat()