grift_repl 1.4.0

REPL for the Grift Scheme language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![forbid(unsafe_code)]

//! # Grift REPL Binary
//!
//! Run with: `cargo run -p grift_repl`

use grift_repl::run_repl;

fn main() {
    // Use a 50,000 cell arena (should be plenty for interactive use)
    run_repl::<50000>();
}