v2026.6.4
All Bundles
Bundle Miscellaneous runtime utilities: UUID generation, date string parsing and formatting, command-line parameter handling, network time retrieval, and console spinner animations. Included in lang.obl.

Spinner

Console spinner

Operations

Last # function

Prints the final state

function : Last() ~ Nil

Example

Spinner->Next();
Spinner->Next();
Spinner->Last();
"done"->PrintLine();

Next # function

Prints and advances the spinner to the next state

function : Next() ~ Nil

Example

for(i := 0; i < 20; i += 1;) {
  Spinner->Next();
};
Spinner->Last();