Last active: 2 years ago
fn main() { let arr: [String; 6] = core::array::from_fn(|i| format!("Arr {}", i)); println!("{:?}", arr); }