public class Hovedprogram { public static void main(String[] args) { Lenkeliste ll = new Lenkeliste(); ll.add(5); System.out.println(ll.pop()); ll.add(99); ll.add(1437985); ll.add(1); for(int ord : ll) { System.out.println(ord); } // while(sc.hasNext()){ // System.out.println(sc.next()); // } } }