Advertisement
Guest User

SimpleIntList

a guest
Nov 11th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.12 KB | None | 0 0
  1.     protected SimpleIntList next;
  2.     protected int value;
  3.     public SimpleIntList(int val)
  4.     {
  5.         value=val;
  6.         next=null;
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement