macro_rules! COMMENT {
($x:expr) => { ... };
}
Expand description
let comment = COMMENT!("Hello!");
assert_eq!(comment.to_string(), "# Hello!");
macro_rules! COMMENT {
($x:expr) => { ... };
}
let comment = COMMENT!("Hello!");
assert_eq!(comment.to_string(), "# Hello!");