12 lines
193 B
Rust
12 lines
193 B
Rust
//! The Conlang REPL, based on [repline]
|
|
//!
|
|
//! Uses [argwerk] for argument parsing.
|
|
#![warn(clippy::all)]
|
|
|
|
pub mod ansi;
|
|
pub mod args;
|
|
pub mod cli;
|
|
pub mod ctx;
|
|
pub mod menu;
|
|
pub mod tools;
|