1 unstable release
0.1.0 | Jan 29, 2023 |
---|
#26 in #easy
1,254 downloads per month
3KB
s-macro
A basic Rust library for conveniently making a String
. Like so:
use s_macro::s;
assert!(s!() == String::new());
assert!(s!("hello, world") == String::from("hello, world"));
assert!(s!(123 + 321) == format!("{}", 123 + 321));
let world = "world";
assert!(s!("hello, {}", world) == format!("hello, {}", world));
assert!(s!("hello, {world}") == format!("hello, {world}"));
Dependencies
~1.5MB
~37K SLoC