public class Hovedprogram2 { public static void main(String[] args) { Boks b = new Boks(); String tekst = "Hei"; b.fyll(tekst); System.out.println(b.hent()); Boks b2 = new Boks(); int tall = 7; b2.fyll(tall); } }