macro_rules! RUN {
($($x:expr), +) => { ... };
}
Expand description
let run = RUN!["echo", "Hello, world!"];
assert_eq!(run.to_string(), r#"RUN ["echo", "Hello, world!"]"#);
macro_rules! RUN {
($($x:expr), +) => { ... };
}
let run = RUN!["echo", "Hello, world!"];
assert_eq!(run.to_string(), r#"RUN ["echo", "Hello, world!"]"#);