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