public class BenytPerson { public static void main(String[] arg) { Person x, y, z; x = new Person("Jacob", "Nordfalk", 30); y = new Person("Kai", "Lund", 86); z = new Person("Peter", "Holm", 2); System.out.println("Vi har oprettet "+x+", "+y+" og "+z); x.pręsentation(); y.pręsentation(); z.pręsentation(); x.hils(y); y.hils(x); z.hils(x); } }