public class Kasino { public static void main(String[] args) { Lenkeliste ll = new Lenkeliste(); ll.add("Rulette"); ll.add("Blackjack"); ll.add("Slots"); ll.add("Poker"); // Jonas sin optimale gambling rute: (preorder) ll.preorder(); System.out.println(); // Alex sin optimale gambling rute: ll.postorder(); } }