Crates.io | owoify |
lib.rs | owoify |
version | 0.1.5 |
source | src |
created_at | 2019-08-01 13:04:00.426435 |
updated_at | 2019-12-30 01:03:02.661958 |
description | Text owoification library |
homepage | |
repository | https://github.com/EvilDeaaaadd/owoify |
max_upload_size | |
id | 153438 |
size | 4,760 |
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());
}