Skip to content
This repository was archived by the owner on May 21, 2026. It is now read-only.

Intro to the Standard Library

Austin Lehman edited this page Oct 23, 2022 · 1 revision

The Aussom standard library is comprised of a small number of modules included with the base interpreter. A few modules are included behind the scenes every time you run Aussom (lang, exception, console).

Here's a list of the Aussom modules available in the base interpreter.

  • lang (lang, int, bool, double, string, list, map, buffer, date) - All of the basic language related functions. (automatically included)
  • exception - Standard exception module. (automatically included)
  • console - Console library that supports console related functions.
  • sys - System related functions.
  • reflect - Support for reflection within Aussom.
  • cunit - A basic unit testing framework.
  • math - Standard math functions.

Clone this wiki locally