Turn's Cock Tier Evaluator :chicken: :trophy:

Welcome to Turn's Cock Tier Evaluator, a Rust-based command-line application where your one-eyed monster gets the recognition it deserves!

The ratings are based on cock rubrics created by turn himself!

The Anatomy of the Evaluator :eggplant: :stethoscope:

I've dissected the cock-rating task into neat, testable modules. Here's a quick breakdown:

Getting Rated and Library Usage :openbook: :maledetective:

Want to see where you stand in the land of peen, but you're kinda a dummy?! Luckily I'm here to guide you through the process.

The Executable Walkthrough

To use the default cli based binary, just run cargo run or cargo run --bin cock-tier from your terminal and follow the prompts. It's very straight-forward tbh. The program will ask you a series of questions about the cock in question, once the questions have run their course you get a comprehensive breakdown complete with a final grade.

Other binaries available include: - tui: a terminal user interface that operates similarly to the default cli binary. The user interface is produced using the cursive rust crate which acts as a ncurses wrapper for rust. To run this binary use the command cargo run --bin tui - TODO

The API

You're a developer who sees the inherent value in this? Strange. However, it is fairly simple to do so. To begin, add the following to your Cargo.toml file:

toml [dependencies] cock_tier = { version = "x.x", path = "../path/to/cock_tier" }

Below is an example of one way you could go about using API.

```rust use cock_tier::{ Abnormalities, Aesthetic, Balls, Circumcision, CockHandler, CockStruct, Curvature, Shape, Size, SizeType::Inches, Tier, ID, Veininess, };

let user = ID::Anonymous;

let cock = CockStruct::new( Size { length: 5.5, girth: 4.5, size_type: Inches, }, Aesthetic::Normal, Balls::Normal, Shape::Cylindrical, Curvature::Straight, Circumcision::Uncircumcised, Veininess::Normal, Abnormalities::None, );

let handler = CockHandler { id: user, cock };

// Now you can access the CockHandler's methods: let grade = handler.grade(); // Returns Tier::C let score = handler.totalscore().score; // Returns 48.0 let percentage = handler.totalscore().percentage; // Returns 68.571434 ```

Testing :petridish: :testtube:

This library comes with a built-in test suite that verifies the functionality of the code. To run the tests, use the command cargo test in the project's root directory.

TODO

License :clipboard: :briefcase:

MIT License