mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
8 lines
177 B
Java
8 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");
|
||
|
}
|
||
|
}
|