Skip to content

anandrav/abra

Repository files navigation

The Abra Programming Language

Build Status

fn fib(n) = match n {
     0 -> 0
     1 -> 1
     _ -> fib(n-1) + fib(n-2)
}


println("The first 10 fibonacci numbers are:")
var i = 0
while i < 10 {
    println(fib(i))
    i <- i + 1
}

Installation

(Requires Rust and Cargo: https://www.rust-lang.org/tools/install) (Requires Node to install VS Code extension)

git clone https://github.com/anandrav/abra.git
cd abra
./scripts/install

About

The Abra Programming Language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages