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