stringlit 2.1.0

A macro to convert from str to String
Documentation
#[macro_export]
macro_rules! s {
    ($e:expr) => {
        $e.to_owned() as String
    };
}

#[macro_export]
macro_rules! string {
    ($e:expr) => {
        $e.to_owned() as String
    };
}

#[cfg(test)]
mod test {
    // enforces same type
    fn strict_equals<T: std::cmp::PartialEq>(a: T, b: T) -> bool {
        return a == b;
    }

    #[test]
    fn same_type_and_value() {
        assert!(strict_equals(s!("abcd"), "abcd".to_owned()));
        assert!(strict_equals(string!("abcd"), "abcd".to_owned()));
        println!("OK");
    }
}