In Python, I can define two variables with an array in one line.
>>>[a,b] = [1,2] >>>a 1 >>>b 2
How do I do the
Maybe
public class PCT { final Point pos; // two ints! public PCT (File file) { pos = parseFile(file); } public int[] parseFile(File f) { Point aa = new Point(); // .... // .... return aa; } }