blink_core 0.1.0

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

fn main() {
    repl::start_repl();
}