|
7 months ago | |
---|---|---|
src | 1 year ago | |
.gitignore | 1 year ago | |
Cargo.toml | 7 months ago | |
LICENSE | 1 year ago | |
README.md | 1 year ago |
A simple rust library for string owoification.
Inspired by:
Add this to Cargo.toml
:
[dependencies]
owoify = "0.1.5"
example.rs
:
use owoify::OwOifiable;
fn main() {
let text = String::from("euthanize me senpai!!");
println!("{}", text.owoify());
}