Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 708 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 708 Bytes

The Abra Programming Language

Build Status

fn fib(n) {
  if n < 2 {
    return n
  }
  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

Documentation

User guide and language reference: https://anandrav.github.io/abra/about.html