mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-28 23:37:57 +02:00
7 lines
117 B
Java
7 lines
117 B
Java
public class Animal {
|
|
private String sound;
|
|
|
|
public void roar() {
|
|
System.out.println(sound);
|
|
}
|
|
}
|