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() ~ NilExample
Spinner->Next();
Spinner->Next();
Spinner->Last();
"done"->PrintLine();Next # function
Prints and advances the spinner to the next state
function : Next() ~ NilExample
for(i := 0; i < 20; i += 1;) {
Spinner->Next();
};
Spinner->Last();