Welcome to the My Learning Docs ๐Ÿ‘‹ and I'm at the starting phase of Documentaion and Learning to do it so.
Computer Science
Bootcamp
Linkedlist
package dday1.ll2;
							// 10|-->20|-->30|null
class Node
{
	int no;   
	Node next; // Pointer Variable
	Node(int n){
		no = n;
		next = null;
	}
}
 class linkedlist {
	public static void main(String[] args) {
		Node x = new Node(10); // 10 | null
		Node y = new Node(20); // 10 | null 20|null
		Node z = new Node(30); // 10 | null 20|null 30|null
		
		x.next=y;
		y.next=z;
		
		Node temp = x;
		
		while(temp!= null) {
			System.out.print(temp.no + " ");
			temp = temp.next;
		}                
	}
}

Hello World

My first Nextra page.

a/hello/file.js
console.log('hello');

..Refresh the Page to Load New Comments and it differs from each page..