Alice is an open source programming language created in 2000.
#1217on PLDB | 24Years Old |
Alice ML is a programming language designed by the Programming Systems Laboratory at Saarland University, Saarbr眉cken, Germany. It is a dialect of Standard ML, augmented with support for lazy evaluation, concurrency (multithreading and distributed computing via remote procedure calls) and constraint programming.. Read more on Wikipedia...
"dlroW olleH"d&O`@
fun fib 0 = 0
| fib 1 = 1
| fib n = spawn fib(n-1) + fib(n-2);