libpenis

Crates.iolibpenis
lib.rslibpenis
version0.1.6
sourcesrc
created_at2023-06-19 14:40:57.234401
updated_at2023-06-19 23:24:41.507696
descriptionA rust port of https://github.com/todashuta/libpenis
homepage
repositoryhttps://github.com/MrEnder0/libpenis
max_upload_size
id894161
size5,201
Mr.Ender (MrEnder0)

documentation

README

LIBPENIS

This is recreation of libpenis which was originally written in C.

Comparing variables was never been that easy and clear like using libpenis while being memory safe in Rust.

Usage

Traditional comparing:

fn main() {
    let a = 1;
    let b = 1;

    if a == b {
        println!("Success!\n");
    }
}

libpenis comparing:

use libpenis::*;

fn main() {
    set_balls(1);
    set_dick_head(1);

    let B = get_balls();
    let D = get_dick_head();

    if B==D {
        println!("Success!\n");
    }
}

Caution

libpenis uses the global static atomics "BALLS" and "DICK_HEAD" so hopefully you don't need those symbols.

License

libpenis is currently under Giant Penis License(GPL) which is a deformed M.I.T license included a penis asc

Commit count: 20

cargo fmt