forked from Labore/PR2-L
1
0
Fork 0
PR2-L/DatenspeicherPaar/src/TestPaar.java

10 lines
283 B
Java

public class TestPaar {
public static void main(String[] args) throws Exception {
DatenspeicherPaar<String, Integer> dsP = new DatenspeicherPaar<>();
dsP.setPaar("Java-Version", 19);
System.out.println(dsP.getWert1() + " " + dsP.getWert2());
}
}