select_prompt.rs 260 B

123456789
  1. fn main() {
  2. cliask::SelectPrompt::new("Choose a fruit:")
  3. .with_items(["Grapefruit", "Guava", "Lychee"])
  4. .run().unwrap();
  5. cliask::SelectPrompt::new("Choose a number:")
  6. .with_items(0..1000)
  7. .run_cancellable().unwrap();
  8. }