Add a description to examples/dialogue_bot

This commit is contained in:
Temirkhan Myrzamadi 2020-02-13 23:38:05 +06:00
parent 42e2f3fb42
commit 34d44e5195

View file

@ -1,3 +1,19 @@
// This is a bot that asks your full name, your age, your favourite kind of
// music and sends all the gathered information back.
//
// # Example
// ```
// - Let's start! First, what's your full name?
// - Luke Skywalker
// - WHat a wonderful name! Your age?
// - 26
// - Good. Now choose your favourite music
// *A keyboard of music kinds is displayed*
// *You select Metal*
// - Metal
// - Fine. Your full name: Luke Skywalker, your age: 26, your favourite music: Metal
// ```
#![allow(clippy::trivial_regex)] #![allow(clippy::trivial_regex)]
#[macro_use] #[macro_use]