FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

GitHub Viewer

class Node { int data; Node next; public Node(int data) { this.data = data; this.next = null; } }

Back | FazBrowse Home | New Git URL