macro_rules! chars_to_string { ($chrs:expr) => { ... }; }
Converts a vector or array of chars to a String.
use suiron::*; let city_of_light = chars_to_string!(['P', 'a', 'r', 'i', 's']);