Skip to content

JayAndJef/microlisp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Microlisp

A tiny mathematical lisp, made for fun. Inspired by lisp-rs

Installation

You need a working rust toolchain to install this. Clone this repository, and run cargo build and run the created executable or cargo run.

Usage

<microlisp executable> <filename>

Example Program

(
  (define factorial (lambda (n) (if (< n 1) 1 (* n (factorial (- n 1))))))
  (factorial 5)
)

About

A tiny mathematical lisp

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages