sets.lib
LIB "sets.lib"; //example for addElement int a=4; list L = 1,2,3; Set S = L; S; ==> {3; 2; 1} ==> Set with 3 elements ==> a; ==> 4 addElement(S,a); ==> {1; 2; 3; 4} ==> Set with 4 elements ==>