Programming Language

Nocter

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

/development/std/io/input.nct

input.nct

//! Borrowed process standard-input construction.

see ./index.nct
see ./file.nct

use /internal/os/darwin

noalloc func stdin(): File {
    return File { fd: darwin.STDIN_FD, state: FileState.borrowed_open }
}