mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-28 23:37:57 +02:00
7 lines
177 B
Java
7 lines
177 B
Java
public class Main {
|
|
public static void main(String[] args) {
|
|
Person p = new Person("a", "b");
|
|
p.shout();
|
|
System.out.println("kein Problem");
|
|
}
|
|
}
|