A simple rust library for string owoification.
Inspired by:
* owo text generator
* OWO Chrome extension
Add this to Cargo.toml
:
toml
[dependencies]
owoify = "0.1.4"
example.rs
:
```rust
use owoify::OwOifiable;
fn main() { let text = String::from("euthanize me senpai!!"); println!("{}", text.owoify()); } ```