A tiny mathematical lisp, made for fun. Inspired by lisp-rs
You need a working rust toolchain to install this.
Clone this repository, and run cargo build
and run the created executable or cargo run
.
<microlisp executable> <filename>
(
(define factorial (lambda (n) (if (< n 1) 1 (* n (factorial (- n 1))))))
(factorial 5)
)