public class TestLenkelistePrint { public static void main(String[] args) { LenkelistePrint liste = new LenkelistePrint<>(); liste.leggTil("Hei"); liste.leggTil("paa"); liste.leggTil("deg!"); // LenkelistePrint vil printe ut alle kall som for-loopen gjoer "behind the scenes" for (String s : liste) { System.out.println(s); } } }