jev_repl/lib.rs
1//! The pieces of the `jev` REPL, exposed so they can be driven without a terminal.
2
3pub mod app;
4pub mod builder;
5pub mod codegen;
6pub mod cost;
7pub mod editor;
8pub mod evaluate;
9pub mod format;
10pub mod headless;
11pub mod highlight;
12pub mod lessons;
13pub mod mock;
14pub mod presets;
15pub mod session;
16pub mod sketch;
17pub mod ui;
18pub mod wrap;