prompt_input/
lib.rs

1
2
3
4
5
6
//! A simple library that provides functionality to prompt for user input.
//! The library is designed to simplify user input handling, offering an easy way to display prompts
//! and capture input without needing to handle `Result` or `Option` explicitly.

pub mod prelude;
mod primitive;