is-thirteen 0.0.13

Did you consider the fact that "Jodie Whittaker" represents the number 13 in some cultures? No you didn't. That's why you need this crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use is_thirteen::IsThirteen;
use std::io::{stdin, Read};

/// Reads from stdin and outputs `true` if it is a thirteen string or `false` otherwise.
fn main() -> Result<(), std::io::Error> {
    let mut input = String::new();
    stdin().read_to_string(&mut input)?;
    if input.ends_with('\n') {
        input.pop();
    }

    println!("{}", input.thirteen());
    Ok(())
}