fn main() { println!( "{}", (1..=10) .map(|i| i.to_string()) .collect::>() .join(", ") ); }