1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! A simple Lisp-1.
//!
//! This crate defines everything that "every" OftLisp system will require.

#![warn(missing_docs)]

extern crate either;
#[macro_use]
extern crate gc;
#[macro_use]
extern crate gc_derive;
extern crate itertools;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
extern crate smallvec;
extern crate spin;
#[macro_use]
extern crate try_opt;
extern crate unicode_segmentation;
extern crate walkdir;

pub mod ast;
pub mod collections;
mod context;
pub mod gensym;
pub mod interpreter;
mod location;
pub mod macro_expand;
pub mod modules;
pub mod paths;
pub mod reader;
mod symbol;
pub mod util;
mod value;

pub use context::{Context, CompilerContext, InterpreterContext, NullContext};
pub use location::Location;
pub use symbol::Symbol;
pub use value::Value;