eight_ball 0.2.4

Mimics the original magic 8 ball
Documentation

me badge cratesio badge docs badge ci badge

eight_ball

Mimics the original 8 magic ball game.

Ask a question and it will reply with an answer...
Also supports predefined custom answers.

Example

use eight_ball::{Answer, AnswerType, EightBall};

fn main() {
    let question = "Am I in charge?";
    let answers = vec![
        Answer::new("UwU.", AnswerType::Affirmative),
        Answer::new("OwO.", AnswerType::NonCommittal),
        Answer::new("Baka No.", AnswerType::Negative),
    ];
    let b = EightBall::with_answers(answers);

    println!("{}", question);
    println!("{}", b.ask(question).unwrap().content);
}

Licence

Apache-2.0