xtoolbox 0.1.2

This is a constantly changing toolbox, and there are often function names like php,python,golang,js,dart because I'm used to using these names, so that's it
Documentation
pub mod fun;
pub use fun::get_guid;
pub use fun::md5;


#[cfg(test)]
mod tests {
    use fun::get_guid;
    use fun::md5;
    use crate::fun;

    #[test]
    fn test_md5() {
        println!("{}", md5("123456"));
    }

    #[test]
    fn test_guid() {
        println!("{}", get_guid());
    }
}