blob: 40f145defbc5ee29ec4a33dd5d6e78cf13aa56c0 [file] [log] [blame]
import java.util.*;
public class Collections2
{
public static void main(String[] args) {
Collection c1 = new TreeSet();
Collections.addRandomIntsToCollection(c1);
Collections.printIntCollection(c1);
}
}