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(); }