Programming Language

Nocter

A self-contained systems language built around simplicity, encapsulation, and foolproof design.

/std/prelude/index.nct

index.nct

//! Synthetic user prelude.
//!
//! User project modules receive this compiler-managed prelude automatically.
//! This module must remain small: core aliases and ubiquitous standard-library
//! types only.

use /fmt

pub use /string.String
pub use /vec.Vec
pub use /iter.Iterator
pub use /map.Map
pub use /set.Set