Go to file
EvilDeaaaadd 8d8f186d00 Add LICENSE.md 2019-08-01 16:42:23 +03:00
src Add credit for owo faces in README.md 2019-08-01 15:50:39 +03:00
.gitignore Remove docs from gitignore 2019-08-01 16:36:42 +03:00
Cargo.toml Add git repository 2019-08-01 16:34:38 +03:00
LICENSE Initial commit 2019-08-01 16:14:13 +03:00
README.md Add git repository 2019-08-01 16:34:38 +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.1"

example.rs:

use owoify::OwOifiable;

fn main() {
    let text = String::from("euthanize me senpai!!");
    println!("{}", text.owoify());
}

Documentation