You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Garrit Franke 147a56b209 Allow uninitialized variables 3 years ago
.builds Add node package for testing 3 years ago
.github/workflows Fix run command 3 years ago
builtin Generate function prototypes 3 years ago
docs Add "writing documentation" to contributing docs 3 years ago
examples Allow uninitialized variables 3 years ago
lib Add C backend 3 years ago
src Allow uninitialized variables 3 years ago
.gitignore Add docs 3 years ago
Cargo.lock Fix C runner 3 years ago
Cargo.toml Fix C runner 3 years ago
LICENSE Add license 3 years ago
README.md Add backend docs 3 years ago
TODO Allow uninitialized variables 3 years ago
book.toml Add docs 3 years ago
build_docs.py Use git switch for building docs 3 years ago
playground.js Add optional types for declares 3 years ago

README.md

The Sabre Programming language

builds.sr.ht status docs

Sabre is a bullshit-free (©) programming language that gets out of your way. It is meant to "just work", without adding unnecessary and bloated language features.

State of this projects

Basic algorithms should compile fine. See the examples More sophisticated programs will not work yet. See TODO for a roadmap.

The Sabre compiler emits JavaScript, and a C backend is currently in development. Backends for WASM, x86 and ARM are planned.

Examples

// examples/fib.sb

fn main() {
    let num: int = 10
    println(fib(num))
}

fn fib(n: int) {
    if n <= 1 {
        return n
    }

    return fib(n-1) + fib(n-2)
}

// -> 55

License

This software is licensed under the Apache-2.0 license.