2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 22:38:04 +02:00

added attachfile example

This commit is contained in:
Martin Thoma 2012-12-19 10:08:25 +01:00
parent 99994b6e12
commit a3e4ead5c4
4 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,7 @@
public class Jungle {
public static void main(String[] args) {
Animal felix = new Cat();
System.out.println(felix.getCatSound());
System.out.println(felix.getSound());
}
}