lispi/lib.rs
1// trying to implement a lisp interpreter according to the original lisp paper
2// https://web.archive.org/web/20131004232653/http://www-formal.stanford.edu/jmc/recursive.pdf
3
4pub mod elementary_functions;
5pub mod file_parser;
6pub mod interpreter;
7pub mod list_functions;
8pub mod list_macros;
9pub mod parser;
10pub mod recursive_functions;
11pub mod repl;
12pub mod types;