Contact: aviboots(AT)netvision.net.il
41,379 questions
53,922 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"} */