useveclite::Veclite;fnmain(){letmut names =Veclite::new();
names.push("Alice".to_string());
names.push("Bob".to_string());
names.push("Carol".to_string());println!("{}", names);// Output: Alice Bob Carol
// Remove the first element
names.remove(0);println!("{}", names);// Output: Bob Carol
}