A macro to convert from str to String.
```rust // import the macros // use stringlit::{s, string};
fn print_string(s: String) { println!("{}", s); }
fn main() { // now you can use printstring(s!("test")); // or printstring(string!("test")); // instead of printstring("test".toowned()); } ```