2024-05-23 06:06:17 -06:00

294 B

title next
Nativity first-page

Nativity is the language and compiler for Birth Software.

Hello, World!

This is a valid hello world with libc linked

module std;

fn [cc(.c)] main [export] () s32 {
    std.print("Hello world\n");
    return 0;
}