1 //! ## Quick Start 2 //! 3 //! You can create an application with several arguments using usage strings. 4 //! 5 //! First, ensure `clap` is available: 6 //! ```console 7 //! $ cargo add clap 8 //! ``` 9 //! 10 //! ```rust 11 #![doc = include_str!("../../examples/tutorial_builder/01_quick.rs")] 12 //! ``` 13 //! 14 #![doc = include_str!("../../examples/tutorial_builder/01_quick.md")] 15 //! 16 //! See also 17 //! - [FAQ: When should I use the builder vs derive APIs?][crate::_faq#when-should-i-use-the-builder-vs-derive-apis] 18 //! - The [cookbook][crate::_cookbook] for more application-focused examples 19 20 #![allow(unused_imports)] 21 use crate::builder::*; 22 23 pub use super::chapter_1 as next; 24 pub use crate::_tutorial as table_of_contents; 25