Contact: aviboots(AT)netvision.net.il
39,932 questions
51,869 answers
573 users
void main() { Set st1 = {'dart', 'c', 'c++', 'java', 'php', 'python'}; Set st2 = {'c#', 'c', 'python', 'dart'}; Set st3 = st1.intersection(st2); print(st3); } /* run: {dart, c, python} */