jay_lib 0.0.16

A small toolkit.
Documentation
#![warn(missing_docs)]
#![deny(missing_docs)]
#![feature(rustdoc_missing_doc_code_examples)]
#![warn(rustdoc::missing_doc_code_examples)]
//!The lib for me to help remember in use of function and style about Rust.
//!Add this to your Cargo.toml:
//! ```toml
//! [dependencies]
//! jay_lib = "0.0.16"
//!```

///Command functions.
pub mod fns;
///A method of config
pub mod config;































/*

pub fn add(left: usize, right: usize) -> usize {
    left + right
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        let result = add(2, 2);
        assert_eq!(result, 4);
    }
}

*/