Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
void main() { Set st = {1, 2, 3, 5, 6, 8, 4, 13, 18}; st.remove(8); print(st); } /* run: {1, 2, 3, 5, 6, 4, 13, 18} */