Concurrent LISP dialect with vectorization and concurrency under the hood.
git clone git@github.com:singaraiona/mia.git
cd mia
cargo run --release --bin repl
cd mia
cargo test --test mia
(setq res (+ 1 2 3 4))
res
-> 10
(setq cond T)
(while cond
(prinl "step: " @)
(setq cond NIL))
step: T
-> NIL
For more examples see examples/ and tests/ directories.
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details
- http://picolisp.com - simple and lightweight LISP dialect.
- http://kparc.com - 6th version of K vector language.
- https://github.com/Chymyst/chymyst-core - Declarative concurrency in Scala.