cliask 0.1.1

cliask is a crate to handle prompting the user for input in a CLI context
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    cliask::SelectPrompt::new("Choose a fruit:")
        .with_items(["Grapefruit", "Guava", "Lychee"])
        .run().unwrap();

    cliask::SelectPrompt::new("Choose a number:")
        .with_items(0..1000)
        .run_cancellable().unwrap();
}