Merge pull request #1 from birth-software/brief-summary
Give a brief summary of the project
This commit is contained in:
commit
cc4ef352c0
@ -3,7 +3,13 @@ title: Birth Software
|
||||
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
|
||||
|
||||
|
@ -7,10 +7,13 @@ Nativity is the language and compiler for Birth Software.
|
||||
|
||||
## Hello, World!
|
||||
|
||||
```nat {filename="main.nat"}
|
||||
const std = #import("std");
|
||||
This is a valid hello world with libc linked
|
||||
|
||||
const main = fn () *!void {
|
||||
```nat {filename="main.nat"}
|
||||
module std;
|
||||
|
||||
fn [cc(.c)] main [export] () s32 {
|
||||
std.print("Hello world\n");
|
||||
return 0;
|
||||
}
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user