Go to file
EvilDeaaaadd 671c169dd7 Update version numbers 2019-12-30 03:00:26 +02:00
src Update test after last commit 2019-12-30 02:46:08 +02:00
.gitignore Generate docs 2019-08-01 17:20:58 +03:00
Cargo.toml Update version numbers 2019-12-30 03:00:26 +02:00
LICENSE Initial commit 2019-08-01 16:14:13 +03:00
README.md Update version numbers 2019-12-30 03:00:26 +02:00

README.md

owoify

A simple rust library for string owoification.
Inspired by:

Credits

Usage

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

Documentation