Module

Modules #

Mosc comes with two kinds of modules, the core module (built-in), and a few optional modules that the host embedding Mosc can enable.

Core module #

The core module is built directly into the VM and is implicitly imported by every other module. You don’t need to import anything to use it. It contains objects and types for the language itself like numbers and strings.

Because Mosc is designed for [embedding in applications][/docs/embedding/], its core module is minimal and is focused on working with objects within Mosc. For stuff like file IO, graphics, etc., it is up to the host application to provide interfaces for this.

Core module exposes classes :

Optional modules #

Optional modules are available in the Mosc project, but whether they are included is up to the host. They are written in Mosc and C, with no external dependencies, so including them in your application is as easy as a simple compile flag.

Since they aren’t needed by the VM itself to function, you can disable some or all of them, so check if your host has them available.

So far there are a few optional modules: