public class Main{ public static void main(String[] args){ Beholder tallBeholder = new Beholder(); Runnable oppgave1 = new MyTask1(tallBeholder); Runnable oppgave2 = new MyTask2(tallBeholder); Thread trad = new Thread(oppgave1); Thread trad2 = new Thread(oppgave2); trad.start(); trad2.start(); System.out.println("NĂ¥ var vi ferdig gitt"); } }