mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 14:28:05 +02:00
8 lines
204 B
Java
8 lines
204 B
Java
|
public class Jungle {
|
||
|
public static void main(String[] args) {
|
||
|
Animal felix = new Cat();
|
||
|
System.out.println(felix.getCatSound());
|
||
|
System.out.println(felix.getSound());
|
||
|
}
|
||
|
}
|