67cdcc2
1 2 3 4 5 6 7 8 9 10
macro_rules! string { ($x:expr) => ( // <1> String::from(stringify!($x)); // <2> ) } fn main() { let s = string!(hello there); println!("{}", s); }