0.8.1 • Published 3 years ago

@kengorab/abra_wasm v0.8.1

Weekly downloads
4
License
-
Repository
-
Last release
3 years ago

Abra

A small programming language, written in Rust

Build Status

This project is very much a work in progress: you can check the documentation site for more information

What's it look like?

It should look familiar, a lot of inspiration was drawn from modern languages like Swift and Kotlin:

func fib(n: Int): Int {
  if (n == 0) {
    0
  } else if (n == 1) {
    1
  } else {
    fib(n - 2) + fib(n - 1)
  }
}

println(fib(10))

You can also see and play with more examples on the Try It Out page of the language documentation site.

0.8.1

3 years ago

0.8.0

3 years ago

0.6.12

4 years ago

0.6.9

4 years ago

0.6.8

4 years ago

0.6.7

4 years ago

0.6.6

4 years ago

0.6.2

4 years ago

0.6.5

4 years ago

0.6.3

5 years ago

0.6.4

5 years ago

0.6.1

5 years ago

0.6.0

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago