Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class NPQueueDriver {
  2.  
  3.     /**
  4.     * The main method sets up the variables for running. The args are not used.
  5.     **/
  6.     public static void main(String[ ] args) {
  7.         NPQueue <String> c = new NPQueue <String> (5);
  8.         c.add("alpha", 3);
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement