2023-01-10 14:22:05 +01:00

13 lines
119 B
Java

package de.test;
class Pair {
fst;
snd;
Pair(fst, snd) {
this.fst = fst;
this.snd = snd;
}
}