aoutils

Crates.ioaoutils
lib.rsaoutils
version0.1.1
sourcesrc
created_at2021-10-17 22:57:23.058754
updated_at2021-10-23 21:36:21.235006
descriptionA tiny utilities package to test publishing to crates.io
homepagehttps://github.com/Andrew-OHara/aoutils
repositoryhttps://github.com/Andrew-OHara/aoutils
max_upload_size
id466455
size3,989
Andrew O'Hara (Andrew-OHara)

documentation

README

aoutils

A tiny utility library I published in order to learn to publish and use myown crates. As I learn more Rust, I may add more functions until this becomes an actual useful utility.

version

0.1.1

usage

use aoutils;

fn main() {
    let result = aoutils::ensure_newline("alpha");
    assert_eq!(result, "alpha\n");

    let result = aoutils::is_alphabetic("alpha");
    assert_eq!(result, true);
}

License

MIT

Commit count: 5

cargo fmt