Advertisement
Yesver08

NodeSLLC.java

Mar 8th, 2021
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.13 KB | None | 0 0
  1. public class NodeSLLC {
  2.     Object data;
  3.     NodeSLLC next;
  4.  
  5.     NodeSLLC(Object data) {
  6.         this.data = data;
  7.     }
  8. }
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement