lispi 0.3.3

Lisp I interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// trying to implement a lisp interpreter according to the original lisp paper
// https://web.archive.org/web/20131004232653/http://www-formal.stanford.edu/jmc/recursive.pdf

pub mod elementary_functions;
pub mod file_parser;
pub mod interpreter;
pub mod list_functions;
pub mod list_macros;
pub mod parser;
pub mod recursive_functions;
pub mod repl;
pub mod types;