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