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