class Main { public static void main(String[] args) { Node forste = new Node<>("Hei"); forste.settNeste(new Node<>("paa")); forste.hentNeste().settNeste(new Node<>("deg!")); Node temp = forste; while (temp != null) { String tekst = temp.hentData(); System.out.println(tekst); temp = temp.hentNeste(); } } }