Programming Language

Nocter

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

/examples/hello.nct

hello.nct

use std/io.print

func main(): i32! {
    print("Hello from Nocter\n")?
    return 0
}