Give a brief summary of the project

This commit is contained in:
David Gonzalez Martin 2024-05-23 06:06:17 -06:00
parent 7746d8606e
commit 80f68190f1
2 changed files with 13 additions and 4 deletions

View File

@ -3,7 +3,13 @@ title: Birth Software
toc: false toc: false
--- ---
This is the page for Birth Software Birth Software aims to bear a new kind of software, which is reliable, fast and secure.
The flagship project of Birth Software, which at the same time gives it its name, is a new operating system. This operating system started being written in Zig, but the shortcomings of the language and the compiler, despite being great to most of the existing ones out there, made the author try to write his own language and compiler.
For that purpose, the current project being developed by Birth Software is Nativity, a systems programming language and a compiler, which aims to compile many lines per second, while still retaining output machine code quality with an (optional) LLVM backend.
You can know more about the current projects being developed by clicking the links below.
## Explore ## Explore

View File

@ -7,10 +7,13 @@ Nativity is the language and compiler for Birth Software.
## Hello, World! ## Hello, World!
```nat {filename="main.nat"} This is a valid hello world with libc linked
const std = #import("std");
const main = fn () *!void { ```nat {filename="main.nat"}
module std;
fn [cc(.c)] main [export] () s32 {
std.print("Hello world\n"); std.print("Hello world\n");
return 0;
} }
``` ```