blink_core 0.1.0

Core interpreter for the Blink Lisp dialect
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod env;
pub mod error;
pub mod eval;
pub mod native_functions;
pub mod parser;
pub mod repl;
pub mod telemetry;
pub mod value;

pub use env::Env;
pub use value::{bool_val, num, str_val, BlinkValue, LispNode, Value}; // add what your plugins use