Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
use std::collections::HashSet; fn main() { let mut st = HashSet::new(); st.insert("a"); st.insert("b"); st.insert("c"); st.insert("d"); println!("{:?}", st); } /* run: {"a", "d", "c", "b"} */