Programming Language

Nocter

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

/examples/hello/nocter.nct

nocter.nct

#name: "hello"
#version: "0.1.0"
#executable: {
    name: "hello",
}

use std/io.print

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