JavaTXCompilerInJavaTX/app/resources/AllgemeinTest/Pair.java

19 lines
186 B
Java
Raw Normal View History

2023-01-10 13:22:05 +00:00
class Pair<T, U> {
T x;
U y;
public Pair() { }
public Pair(T x, U y) {
this.x = x;
this.y = y;
}
public T fst () {
return x;
}
public U snd () {
return y;
}
}