7 lines
150 B
Java
Raw Normal View History

2024-01-23 16:39:49 +01:00
class Aufgabe {
public static void main(String[] args) {
2024-01-23 17:05:47 +01:00
Manager person = new Manager(1, "Wurst", "Hans", 100, 1000);
2024-01-23 16:39:49 +01:00
person.print();
}
}