Skip to main content

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 format;
9pub mod headless;
10pub mod highlight;
11pub mod lessons;
12pub mod mock;
13pub mod presets;
14pub mod session;
15pub mod sketch;
16pub mod ui;
17pub mod wrap;