1 2 3 4 5 6
// Copyright (c) TribuFu. All Rights Reserved. #[macro_export] macro_rules! str_vec { ($($x:expr),*) => (vec![$($x.to_string()),*]); }