macro_rules! join_path_string { ($($x:expr),*) => { ... }; }
Join a path together from a list of string-like arguments.
let path = join_path_string!("a", "b", "c"); assert_eq!(path, "a/b/c"); // on Unix systems