1
0

Finish Java Kompendium book

This commit is contained in:
2025-12-07 12:22:07 +01:00
parent 5eded28b16
commit c95abc31d6
30 changed files with 1400 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
public class GenericClass<T> {
public T value;
public GenericClass(T value) {
this.value = value;
}
}