Plasma is a programming language created in 2015 by Paul Bone.
| #1680on PLDB | 11Years Old |
git clone https://github.com/PlasmaLang/plasmaPlasma, which aims to strike a balance between functional and imperative programming, include state-of-the-art concurrent programming features and feature automatic parallelisation. Boney previously worked on Mercury a logic language.
func fib(n : Int) -> Int {
if (n < 2) {
return 1
} else {
return fib(n-1) + fib(n-2)
}
}