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 tmp = forste; while(tmp != null){ System.out.println(tmp.hentData()); tmp = tmp.hentNeste(); } } }