public class Hovedprogram1 { public static void main(String[] args) { Node start = new Node(1); Node nrTo = new Node(2); start.settNeste(nrTo); nrTo.settNeste(new Node(3)); } }