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 96f16f67fa Add Readme 3 years ago
.builds Add CI 3 years ago
examples Add remaining comparison operators 3 years ago
src Add remaining comparison operators 3 years ago
.gitignore Add greeter example 3 years ago
Cargo.lock Rename flex -> sabre 3 years ago
Cargo.toml Rename flex -> sabre 3 years ago
LICENSE Add license 3 years ago
README.md Add Readme 3 years ago
TODO Add Readme 3 years ago

README.md

The Sabre Programming language

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

State of this projects

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

Examples

// examples/fib.sb
main :: () {
    let num = 10
    return fib(num)
}

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

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

License

This software is licensed under the Apache-2.0 license.