Go to file
EvilDeaaaadd 5adaf6d2b2 Add license and description to Cargo.toml 2019-08-01 16:02:46 +03:00
src Add credit for owo faces in README.md 2019-08-01 15:50:39 +03:00
.gitignore Add credit for owo faces in README.md 2019-08-01 15:50:39 +03:00
Cargo.toml Add license and description to Cargo.toml 2019-08-01 16:02:46 +03:00
README.md Add credit for owo faces in README.md 2019-08-01 15:50:39 +03:00

README.md

owoify

A simple rust library for string owoification.
Inspired by:

Credits

Usage

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());
}

Documentation