1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Pacakge to create the `doggo` executable to compliment a woofer.
//!
//! # Examples
//!
//! ```c
//! $ doggo maxine
//! maxine is a d*ng fine woofer.
//! $ doggo jethro -m
//! 11/10 excellent bork & tail wagging
//! ```

/// Given a doggo's name, return a `bool` asserting whether they are good
pub fn is_good_dogg(_: &str) -> bool {
    true
}