Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2020
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1.  
  2. public class Main {
  3.  
  4.     public static void main(String[] args) {
  5.  
  6.         SimpleCollection s = new SimpleCollection("alphabet");
  7.         System.out.println(s);
  8.  
  9.         System.out.println();
  10.  
  11.         s.add("a");
  12.         System.out.println(s);
  13.  
  14.         System.out.println();
  15.  
  16.         s.add("b");
  17.         System.out.println(s);
  18.  
  19.         System.out.println();
  20.  
  21.         s.add("c");
  22.         System.out.println(s);
  23.  
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement